[Git] Gitignore 설정 후 적용이 안될 때

.gitignore 적용 후 github 반영

Posted by Wonyong Jang on July 31, 2020 · 1 min read

gitignore 설정 후 적용

$ git rm -r --cached .
$ git add .
$ git commit -m "fixed untracked files”
$ git push origin master
  • 다음의 명령을 사용하면 곧바로 설정이 적용된다. 저장소에 이미 올라가 있는 파일들도 삭제된다

Reference