GH-SEARCH-REPOS(1) | GitHub CLI manual | GH-SEARCH-REPOS(1) |
gh-search-repos - Search for repositories
gh search repos [<query>] [flags]
Search for repositories on GitHub.
The command supports constructing queries using the GitHub search syntax, using the parameter and qualifier flags, or a combination of the two.
GitHub search syntax is documented at:
⟨https://docs.github.com/search-github/searching-on-github/searching-for-repositories⟩
# search repositories matching set of keywords "cli" and "shell" $ gh search repos cli shell # search repositories matching phrase "vim plugin" $ gh search repos "vim plugin" # search repositories public repos in the microsoft organization $ gh search repos --owner=microsoft --visibility=public # search repositories with a set of topics $ gh search repos --topic=unix,terminal # search repositories by coding language and number of good first issues $ gh search repos --language=go --good-first-issues=">=10" # search repositories without topic "linux" $ gh search repos -- -topic:linux # search repositories excluding archived repositories $ gh search repos --archived=false
gh-search(1)
Nov 2024 |