프론트엔드 첫걸음

.gitignore 살펴보기 본문

개발 공부/Git

.gitignore 살펴보기

차정 2022. 7. 2. 23:33

.gitignore 파일 생성

  • 루트 경로에서 touch .gitignore 로 깃 이그노어 파일 생성할 수 있다.
  • gitignore.io에서 .gitignore 파일에 템플릿 얻을 수 있음

 

패턴 형식

  • 폴더 이름 뒤에 / 슬래쉬 붙이면 전체 디렉토리 제외
  • *.log : / 제외하고 어떤 문자와도 매치되는 와일드카드

https://git-scm.com/docs/gitignore

 

Git - gitignore Documentation

The optional configuration variable core.excludesFile indicates a path to a file containing patterns of file names to exclude, similar to $GIT_DIR/info/exclude. Patterns in the exclude file are used in addition to those in $GIT_DIR/info/exclude.

git-scm.com

 

 

 

폴더 이름 앞에 / 슬래쉬 붙이면 해당 디렉토리는 제외하되 하위 폴더는 제외되지 않는다는데 

테스트 해봤더니 잘 되지 않는다 ㅠㅠ 나중에 다시 확인해봐야겠다