- .gitignore가 작동하지 않을때 대처법 목차
.gitignore가 제대로 작동되지 않아서 ignore처리된 파일이 자꾸 changes에 나올때가 있습니다.
git의 캐시가 문제가 되는거라 아래 명령어로 캐시 내용을 전부 삭제후 다시 add All해서 커밋하시면 됩니다.
git rm -r --cached .
git add .
git commit -m "fixed untracked files"
'Spring > Spring 오류' 카테고리의 다른 글
[git]git.ignore오류 (0) | 2020.08.17 |
---|---|
spring 웹페이지가 안띄워질때 (0) | 2020.03.18 |
[docker]com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure 오류 (0) | 2020.01.30 |
[docker]window 10 도커(docker)설치하기 (0) | 2020.01.28 |
[SPRING] ApplicationContextException : ServletWebServerFactory 빈이 없어서 ServletWebServerApplicationContext를 시작할 수 없습니다. (0) | 2020.01.20 |