このバージョンの GitHub Enterprise はこの日付をもって終了となりました: 2022-06-03. 重大なセキュリティの問題に対してであっても、パッチリリースは作成されません。 パフォーマンスの向上、セキュリティの改善、新機能のためには、最新バージョンのGitHub Enterpriseにアップグレードしてく� さい。 アップグレードに関する支援については、GitHub Enterprise supportに連絡してく� さい。
Gitignore
Gitignore APIは、ファイルやディレクトリを無視するために利用できる.gitignore
テンプレートをフェッチします。
Gitignore APIについて
GitHub Enterprise Serverインスタンス上に新しいリポジトリをAPIを介して作成する� �合、作成時にリポジトリに適用する.gitignoreテンプレートを指定できます。 .gitignore テンプレート API は、GitHub Enterprise Server の .gitignore リポジトリからテンプレートを一覧表示してフェッチします。
gitignore のカスタ� メディアタイプ
gitignore テンプレートを取得するときに、このカスタ� メディアタイプを使用できます。
application/vnd.github.VERSION.raw
詳しい情� �については、「メディアタイプ」を参照してく� さい。
Get all gitignore templates
List all templates available to pass as an option when creating a repository.
HTTP response status codes
Status code | 説明 |
---|---|
200 | OK |
304 | Not modified |
コードサンプル
curl \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token <TOKEN>" \
http(s)://HOSTNAME/api/v3/gitignore/templates
Response
Status: 200
[
"Actionscript",
"Android",
"AppceleratorTitanium",
"Autotools",
"Bancha",
"C",
"C++"
]
Get a gitignore template
The API also allows fetching the source of a single template. Use the raw media type to get the raw contents.
パラメータ
Headers |
---|
名前, 種類, 説明 |
accept stringSetting to |
Path parameters |
名前, 種類, 説明 |
name string必� � |
HTTP response status codes
Status code | 説明 |
---|---|
200 | OK |
304 | Not modified |
コードサンプル
curl \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token <TOKEN>" \
http(s)://HOSTNAME/api/v3/gitignore/templates/NAME
Response
Status: 200
{
"name": "C",
"source": "# Object files\n*.o\n\n# Libraries\n*.lib\n*.a\n\n# Shared objects (inc. Windows DLLs)\n*.dll\n*.so\n*.so.*\n*.dylib\n\n# Executables\n*.exe\n*.out\n*.app\n"
}