.gitignore Git 버전 관리에서 제외할 파일 목록을 작성한 파일 gitignore안에 작성된 파일들은 commit & push되지 않고 검색되지도 않는다!! 설정 방법 최상위 Directory에 .gitignore 파일을 생성 작성 규칙 # : comment 주석 # no .a files 확장자가 a인 모든파일 무시 *.a #ignore .a files in the current directory 현재 폴더안의 확장자가 a인 모든파일 무시 /*.a # but do track lib.a, even though you're ignoring .a files above # a확장자 중 lib.a는 무시하지 않음 !lib.a # 해당 폴더안의 모든 파일 무시 folder_name/ # 해당 폴더의 확장자..