프론트엔드 개발
[git].gitignore 적용 안될때 본문
.gitignore에, 원하지 않는 폴더 / 파일들을 추가했지만, 작업트리에서 변경되었다고 git이 인식하는 문제가 발생했습니다.
이러한 원인은 git의 캐시가 문제가 될 수 있는데, 아래 명령어로 캐시 내용을 삭제한 후 진행하면 해결됩니다.
git rm -r --cached
git add .
git commit -m "fixed untracked files"
-r: 하위 디렉토리를 포함한 모든 파일 제거
--cached : git에 있는 인덱스 파일만 삭제하고 실제 파일은 삭제되지 않는다.
'Front-End > Error 해결' 카테고리의 다른 글
zsh: command not found: code (2) | 2022.07.21 |
---|---|
[next js + typescript 모듈 import error]Could not find a declaration file for module (0) | 2021.08.14 |
[오류 수정] Browserslist: caniuse-lite is outdated. Please run:npx browserslist@latest —update-db (0) | 2021.07.20 |
[git]Logon failed, use ctrl+c to cancel basic credential prompt (0) | 2021.07.17 |
VSCode 터미널 tsc-node 에러 (0) | 2021.05.07 |
Comments