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