shldhee / note

개인노트
0 stars 0 forks source link

git ignore 작동 되지 않을때 대처 방법 #3

Open shldhee opened 3 years ago

shldhee commented 3 years ago

.gitignore가 제대로 작동되지 않아서 ignore처리된 파일이 자꾸 changes에 나올때가 있습니다. git의 캐시가 문제가 되는거라 아래 명령어로 캐시 내용을 전부 삭제후 다시 add All해서 커밋하시면 됩니다.

git rm -r --cached .
git add .
git commit -m "fixed untracked files"

출처 : https://jojoldu.tistory.com/307