GitHub Enterprise Server 全体にわたってグローバルにウィキを検索できます。あるいは、特定のリポジトリや Organization のみのウィキの検索もできます。 詳細については、「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.
ユーザまたは Organization のリポジトリ内の検索
特定のユーザーまたは Organization が所有するすべてのリポジトリで Wiki ページを検索するには、user
または org
修飾子を使います。 特定のリポジトリの Wiki ページを検索するには、repo
修飾子を使います。
修飾子 | 例 |
---|---|
user:USERNAME | user:defunkt は、@defunkt が所有するリポジトリの Wiki ページと一致します。 |
org:ORGNAME | org:github は、GitHub Organization が所有するリポジトリの Wiki と一致します。 |
repo:USERNAME/REPOSITORY | repo:defunkt/gibberish は、@defunkt の "gibberish" リポジトリの Wiki ページと一致します。 |
ウィキページのタイトルまたは本文内の検索
in
修飾子は、Wiki ページのタイトルまたは本文のテキストに検索を限定します。 この修飾子がない� �合、タイトルおよび本文のテキストの両方が検索されます。
修飾子 | 例 |
---|---|
in:title | usage in:title は、"usage" という単語を含む Wiki ページのタイトルと一致します。 |
in:body | installation in:body は、本文のテキストに "installation" という単語が含まれる Wiki ページと一致します。 |
最終更新日で検索
updated
修飾子は、指定した日付範囲内に最後に更新された Wiki ページと一致します。
日付に対して検索を行う� �合、結果をさらにフィルタリングするためにより大きい、より小さい、範囲の修飾子を利用できます。 詳細については、「Understanding the search syntax」 (検索構文の理解) を参照してく� さい。
修飾子 | 例 |
---|---|
updated:YYYY-MM-DD | usage updated:>2016-01-01 は、"usage" という単語を含み、2016 年 1 月 1 日より後に最後に更新された Wiki ページと一致します。 |