DevOps/Git
[Git] .gitignore 파일 사용하기
`작은거인`
2020. 2. 6. 04:08
.gitignore 파일 이란?
ㅁ .gitignore를 통해서 Git에 추가할 때 특정 파일을 추가되지 않도록 설정할 수 있다.
## .gitignore 파일 예시 ##
$ cat .gitignore
# terraform binary
terraform.exe
# terraform plugins
.terraform/
# terraform state
*.tfstate
*.tfstate.backup
.gitignore 파일 적용
ㅁ git의 캐시가 남아있을 경우 제대로 동작하지 않기 때문에 캐시를 비우고 실행해야 한다.
git rm -r --cached .
git add .
git commit -m "fixed untracked files"
git push
.gitignore 사이트
ㅁ .gitignore 파일을 생성해주는 사이트
ㅁ Github .gitignore 예시 파일