불필요한 파일을 깃헙에 추가할 필요없기 때문에 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
'버전관리시스템 > Git&Github' 카테고리의 다른 글
[Git] CLI 사용해서 Conflict 해결하기 (0) | 2018.06.29 |
---|---|
[Git] 원격저장소(remotes)에 commit된 branch 지우기 (0) | 2018.06.08 |
[SourceTree] github 프로젝트 가져올때 한글 커밋이 깨지는 현상 해결 (0) | 2018.02.11 |
SourceTree를 활용한 브랜치 합치기(merge) (0) | 2017.11.27 |