ignore를 추가했는데 계속 파일들이 추가될 때
git의 캐시문제이므로 터미널에서 캐시 삭제 후 다시 커밋하면 된다.
git rm -r --cached .
git add .
git commit -m "remove source files"
git rm --cached filename
출처: https://novemberfirst.tistory.com/91
'Team > GIT' 카테고리의 다른 글
[ GIT ] Git branch list (0) | 2023.08.30 |
---|---|
[ GIT ] fatal: refusing to merge unrelated histories (0) | 2023.08.23 |
[ GIT ] git rebase (0) | 2022.08.14 |
[ GIT ] 캐싱된 env 파일 제거 (0) | 2022.03.26 |
[ GIT ] 대소문자 무시 설정 해제 (0) | 2021.11.11 |