git ignore란? - git 에서 특정 파일이나 폴더를 관리 대상에서 제외 시킬 때 사용하는 파일 1. git ignore 파일 생성 http://gitignore.io gitignore.io Create useful .gitignore files for your project www.toptal.com 2. git 최상위 경로로 파일을 이동 3. git ignore 파일 적용 git rm -r --cached . git add . git commit -m "Apply .gitignore"