Gitignore
When you create a new Centelar repository via the API, you can specify a .gitignore template to apply to the repository upon creation. The .gitignore Templates API lists and fetches templates from the Centelar .gitignore repository.
Listing available templates
List all templates available to pass as an option when creating a repository.
GET /gitignore/templates
Response
Status: 200 OK
[
"Actionscript",
"Android",
"AppceleratorTitanium",
"Autotools",
"Bancha",
"C",
"C++"
]
Get a single template
The API also allows fetching the source of a single template.
GET /gitignore/templates/C
Response
Status: 200 OK
{
"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"
}
Use the raw media type to get the raw contents.
Status: 200 OK
# Object files *.o # Libraries *.lib *.a # Shared objects (inc. Windows DLLs) *.dll *.so *.so.* *.dylib # Executables *.exe *.out *.app