본문 바로가기

버전관리시스템/Git&Github

.gitignore 설정하기

불필요한 파일을 깃헙에 추가할 필요없기 때문에 ignore를 사용하면 된다.

그럴려면 불필요한 파일을 알아야되는데..

=====================================================

 

정리된 사이트 : https://github.com/jehyunpark/todolist/wiki/gitignore-%EC%84%A4%EC%A0%95

 

패턴 사용법 :

 

# : 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