您可以在所有 GitHub Enterprise Server 内全局搜索 wiki,也可以在特定仓库或组织内搜索 wiki。 有关详细信息,请参阅“关于搜索 GitHub”。
Tips:
- This article contains links to example searches on the GitHub.com website, but you can use the same search filters with GitHub Enterprise Server. In the linked example searches, replace
github.com
with the hostname for your GitHub Enterprise Server instance. - For a list of search syntaxes that you can add to any search qualifier to further improve your results, see "Understanding 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.
在用户或组织的仓库内搜索
要从特定用户或组织拥有的所有存储库中查找 Wiki 页面,请使用 user
或 org
限定符。 要从特定存储库中查找 wiki 页面,请使用 repo
限定符。
限定符 | 示例 |
---|---|
user:USERNAME | user:defunkt 与 @defunkt 拥有的存储库中的 wiki 页面匹配。 |
org:ORGNAME | org:github 与 GitHub 组织拥有的存储库中的 wiki 匹配。 |
repo:USERNAME/REPOSITORY | repo:defunkt/gibberish 与 @defunkt 的“gibberish”存储库中的 wiki 页面匹配。 |
在 wiki 页面� �题或正文文本中搜索
in
限定符将搜索限制为 wiki 页面� �题或正文文本。 如果未使用该限定符,将同时搜索� �题和正文文本。
限定符 | 示例 |
---|---|
in:title | usage in:title 与带有单词“usage”的 wiki 页面� �题匹配。 |
in:body | installation in:body 与正文文本中带有“installation”一词的 wiki 页面匹配。 |
按上次更新日期搜索
updated
限定符与最近一次更新时间在指定日期范围内的 wiki 页面匹配。
搜索日期时,可以使用大于、小于和范围限定符来进一步筛选结果。 有关详细信息,请参阅“了解搜索语法”。
限定符 | 示例 |
---|---|
updated:YYYY-MM-DD | usage updated:>2016-01-01 与最近一次更新时间在 2016-01-01 之后且有单词“usage”的 wiki 页面匹配。 |