2016년 2월 13일 토요일

IntelliJ에서 gitignore가 충돌할 경우 해결 방법

IntelliJ를 사용해서 git를 관리하다보면 gitignore에 등록하기전에 add된 파일이 gitignore와 충돌하여 에러가 나는 경우가 있다. 그럴 경우 아래와 같이 처리하면 해결된다.

$ git rm -r --cached .
git add .
git commit -m "git ignore cache removed"
git push


git pull
git add .
git commit -m "git ignore cache removed"
git push

댓글 없음: