ERROR!!!!!!!

.gitignore 작동하지 않을 때

voider 2020. 9. 16. 19:44

.gitignore를 설정해뒀는데도 파일이 그대로 커밋이 되었다.

git캐시 문제라고 한다. 아래 명령어로 캐시를 싹 밀고 다시 커밋하면 .gitignore가 제대로 작동한다.

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

참고