만약 이미 commit, push 완료된 상태에서 .gitignore을 수정한다면 적용이 안된다.
이런 경우에는 Git의 캐시를 초기화 한 후 다시 commit해야한다.
캐시 초기화
git rm -r --cached .
git add .
git commit -m"[Commit Message]"
git push [remote name] [branch name]
- rm: 파일 제거 명령어
- -r: 폴더 하위의 파일 모두 제거참조
- --chched: 원격저장소에서만 제거
'이것저것 > Git' 카테고리의 다른 글
Git 로컬과 원격에서 브랜치 제거 (0) | 2024.08.05 |
---|---|
GitHub 풀리퀘(PR) 병합 충돌 해결하기(These confilcts are too complex to resolve in the web editor) (0) | 2024.08.03 |