Searching wikis
You can search wikis on GitHub and narrow the results using these wiki search qualifiers in any combination.
In this article
You can search wikis globally across all of GitHub, or search wikis within a particular repository or organization. For more information, seeAbout searching on GitHub.
Tip
- This article contains links to example searches on the GitHub.com website, but you can use the same search filters in any GitHub platform. In the linked example searches, replace
github.com
with the hostname for your GitHub platform. - For a list of search syntaxes that you can add to any search qualifier to further improve your results, seeUnderstanding the search syntax.
- Use quotations around multi-word search terms. For example, if you want to search for issues with the label "In progress," you'd search for
label:"in progress"
. Search is not case sensitive.
Search within a user's or organization's repositories
To find wiki pages from all repositories owned by a certain user or organization, use theuser
ororg
qualifier. To find wiki pages from a specific repository, use therepo
qualifier.
Qualifier | Example |
---|---|
user:USERNAME | user:defunkt matches wiki pages from repositories owned by @defunkt. |
org:ORGNAME | org:github matches wikis in repositories owned by the GitHub organization. |
repo:USERNAME/REPOSITORY | repo:defunkt/gibberish matches wiki pages from @defunkt's "gibberish" repository. |
Search within a wiki page title or body text
Thein
qualifier limits the search to the wiki page title or body text. Without the qualifier, both the title and body text are searched.
Qualifier | Example |
---|---|
in:title | usage in:title matches wiki page titles with the word "usage." |
in:body | installation in:body matches wiki pages with the word "installation" in their main body text. |
Search by last updated date
Theupdated
qualifier matches wiki pages that were last updated within the specified date range.
When you search for a date, you can use greater than, less than, and range qualifiers to further filter results. For more information, seeUnderstanding the search syntax.
Qualifier | Example |
---|---|
updated:YYYY-MM-DD | usage updated:>2016-01-01 matches wiki pages with the word "usage" that were last updated after 2016-01-01. |