[Git] 커밋된 파일 .gitignore 적용

Updated:

  • .gitignore을 이용하여 커밋에 제외하고 싶은 파일을 정할 수 있음
  • 하지만 깜빡하고 이미 커밋 후 제외하고픈 파일이 생길 수 있다

–cached keyword

  • Use this option to unstage and remove paths only from the index.
  • Working tree files, whether modified or not, will be left alone.
$ git rm -r --cached .
$ git add .
$ git commit -m "Apply .gitignore"
$ git push
  • 캐시를 지우고 .gitignore 적용

ref :
수정하고 저장소에 저장하기

Categories:

Updated:

Leave a comment