Skip to main content
ドキュメントには� �繁に更新が� えられ、その都度公開されています。本ページの翻訳はま� 未完成な部分があることをご了承く� さい。最新の情� �については、英語のドキュメンテーションをご参照く� さい。本ページの翻訳に問題がある� �合はこちらまでご連絡く� さい。

このバージョンの 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

Works with GitHub Apps

List all templates available to pass as an option when creating a repository.

HTTP response status codes

Status code説明
200

OK

304

Not modified

コードサンプル

get/gitignore/templates
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

Works with GitHub Apps

The API also allows fetching the source of a single template. Use the raw media type to get the raw contents.

パラメータ

Headers
名前, 種類, 説明
acceptstring

Setting to application/vnd.github.v3+json is recommended.

Path parameters
名前, 種類, 説明
namestring必� �

HTTP response status codes

Status code説明
200

OK

304

Not modified

コードサンプル

get/gitignore/templates/{name}
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" }