세계에러수집위원회/에러모음소
gitignore 파일 숨김 안될때 해결방법
주인장v
2022. 6. 29. 17:51
캐시가 쌓여서 작동을 안하는 것이다.
git rm -r --cached .
를 친 후, 파일을 수정해서 다시 저장하면 다시 적용된다(파일명이 옅어진다)
https://novemberfirst.tistory.com/91
[GIT] git Ignore가 적용이 안될 때
ignore를 추가했는데 자꾸 계속 파일들이 추가될 때 git의 캐시문제 이므로 터미널을 열어서 캐시 삭제 후 다시 커밋하면 된다. git rm -r --cached . git add . git commit -m "remove source files" 추가로 git..
novemberfirst.tistory.com