.gitignore API

Tier: Free, Premium, Ultimate Offering: GitLab.com, Self-managed, GitLab Dedicated

GitLab에서 /gitignores 엔드포인트는 Git .gitignore 템플릿 목록을 반환합니다. 자세한 정보는 .gitignore에 대한 Git 문서를 참조하세요.

게스트 역할을 가진 사용자는 .gitignore 템플릿에 액세스할 수 없습니다. 자세한 내용은 프로젝트 및 그룹 가시성을 참조하세요.

모든 .gitignore 템플릿 가져오기

모든 .gitignore 템플릿 목록을 가져옵니다:

GET /templates/gitignores

예시 요청:

curl "https://gitlab.example.com/api/v4/templates/gitignores"

예시 응답:

[
  {
    "key": "Actionscript",
    "name": "Actionscript"
  },
  {
    "key": "Ada",
    "name": "Ada"
  },
  {
    "key": "Agda",
    "name": "Agda"
  },
  {
    "key": "Android",
    "name": "Android"
  },
  {
    "key": "AppEngine",
    "name": "AppEngine"
  },
  {
    "key": "AppceleratorTitanium",
    "name": "AppceleratorTitanium"
  },
  {
    "key": "ArchLinuxPackages",
    "name": "ArchLinuxPackages"
  },
  {
    "key": "Autotools",
    "name": "Autotools"
  },
  {
    "key": "C",
    "name": "C"
  },
  {
    "key": "C++",
    "name": "C++"
  },
  {
    "key": "CFWheels",
    "name": "CFWheels"
  },
  {
    "key": "CMake",
    "name": "CMake"
  },
  {
    "key": "CUDA",
    "name": "CUDA"
  },
  {
    "key": "CakePHP",
    "name": "CakePHP"
  },
  {
    "key": "ChefCookbook",
    "name": "ChefCookbook"
  },
  {
    "key": "Clojure",
    "name": "Clojure"
  },
  {
    "key": "CodeIgniter",
    "name": "CodeIgniter"
  },
  {
    "key": "CommonLisp",
    "name": "CommonLisp"
  },
  {
    "key": "Composer",
    "name": "Composer"
  },
  {
    "key": "Concrete5",
    "name": "Concrete5"
  }
]

단일 .gitignore 템플릿 가져오기

단일 .gitignore 템플릿을 가져옵니다:

GET /templates/gitignores/:key
속성 유형 필수 설명
key string yes .gitignore 템플릿의 키

예시 요청:

curl "https://gitlab.example.com/api/v4/templates/gitignores/Ruby"

예시 응답:

{
  "name": "Ruby",
  "content": "*.gem\n*.rbc\n/.config\n/coverage/\n/InstalledFiles\n/pkg/\n/spec/reports/\n/spec/examples.txt\n/test/tmp/\n/test/version_tmp/\n/tmp/\n\n# dotenv library에서 환경 변수를 로드하기 위해 사용됨.\n# .env\n\n## RubyMotion에 특화됨:\n.dat*\n.repl_history\nbuild/\n*.bridgesupport\nbuild-iPhoneOS/\nbuild-iPhoneSimulator/\n\n## RubyMotion에 특화됨 (CocoaPods 사용):\n#\n# .gitignore에 Pods 디렉토리를 추가하지 않기를 권장합니다. 그러나\n# 귀하 스스로 판단해야 하며, 장단점은 다음에서 확인할 수 있습니다:\n# https://guides.cocoapods.org/usi..\n#\n# vendor/Pods/\n\n## 문서 캐시 및 생성된 파일:\n/.yardoc/\n/_yardoc/\n/doc/\n/rdoc/\n\n## 환경 정규화:\n/.bundle/\n/vendor/bundle\n/lib/bundler/man/\n\n# 라이브러리 또는 gem의 경우 여러 환경에서 실행될 코드이므로\n# 이 파일들을 무시해야 할 수도 있음; 그렇지 않으면 확인하세요:\n# Gemfile.lock\n# .ruby-version\n# .ruby-gemset\n\n# rvm < 1.11.0을 지원하지 않거나 무언가를 사용하지 않는다면 무시하세요:\n.rvmrc\n"
}