본문 바로가기
프로그래밍/Git

[Git] git 버전관리 제외파일 추가(gitignore)

by Youngs_ 2022. 9. 6.

Git .gitignore File 적용하기

.gitignore이란?

Project에 원하지 않는 Backup File이나 Log File , 혹은 컴파일 된 파일들을 Git에서 제외시킬수 있는 설정 File이다.
한마디로 add, commit, push 가 안되게 할 파일들을 등록한다는 뜻

1. .gitignore 파일 만들기

  • 항상 최상위 Directory에 존재해야한다.
  • Ex) 예시

  • 문법
# : comments

# no .a files
*.a

# but do track lib.a, even though you're ignoring .a files above
!lib.a

# only ignore the TODO file in the current directory, not subdir/TODO
/TODO

# ignore all files in the build/ directory
build/

# ignore doc/notes.txt, but not doc/server/arch.txt
doc/*.txt

# ignore all .pdf files in the doc/ directory
doc/**/*.pdf

2. 적용하기

  • 적용하는 방법은 어렵지 않다. .gitignore File을 같이 Push하면 된다.
  • 기존에 있던 Project에 .gitignore File이 적용이 안되는 경우에는 git Repository에서 적용해보고 다시 Push해보기 바란다.
git rm -r --cached .
git add .
git commit -m "Apply .gitignore"

3. 확인해보기

  • Local에서는 ignoreFile이 사라지지 않았지만 Remote에 Push가 될때에는 적용되어 올라간 모습을 볼 수 있다.

Reference

 


출처 : https://nesoy.github.io/articles/2017-01/Git-Ignore

 

Git .gitignore 적용하기

 

nesoy.github.io

 

댓글