[GitHub] gitignore에 추가했는데 계속 Changes에 남아있는 경우 해결 방법

    너는 무시하라고 했지만 git은 이미 변화를 감지하고 있기때문에 생기는 일이다. 

     

    solution

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

    댓글