Skip to main content
DevTools24

.gitignore 생성기

인기 있는 언어와 프레임워크에 대한 템플릿에서 .gitignore 파일을 생성합니다. 결합할 여러 템플릿을 선택합니다.

Languages

Frameworks

Operating Systems

Editors

About .gitignore

  • Select one or more templates above to generate your .gitignore
  • Templates can be combined for projects using multiple technologies
  • Place the .gitignore file in your repository root
  • Files already tracked by Git won't be ignored until you run git rm --cached

.gitignore Files - 기술 세부 정보

A .gitignore file specifies intentionally untracked files that Git should ignore. Files already tracked by Git are not affected. Common patterns include build outputs, dependencies, environment files, and IDE settings.

명령줄 대안

# Create a .gitignore from GitHub's collection\ncurl -sL https://www.toptal.com/developers/gitignore/api/node > .gitignore\n\n# Or use gitignore.io\ngit config --global alias.ignore '!gi() { curl -sL https://www.toptal.com/developers/gitignore/api/$@ ;}; gi'

참조

공식 사양 보기