-
[Git] .gitignore 파일 사용하기DevOps/Git 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 예시 파일
'DevOps > Git' 카테고리의 다른 글
[Git] git-bash UI 프롬프트 비활성화 (0) 2020.02.04 [Git] git 최초 설정 (0) 2020.02.04 [Git] git push 에러 발생 (0) 2020.01.21