Challenge, and Growth ! Introduce
                                                                                                             

Welcome to my blog 🙌🏻

Total

Today

Yesterday













Git

[트러블슈팅] .gitignore 적용되지 않을 때 / 원인 : Git 캐시

뽀시라운 2024. 11. 13. 21:27
반응형
SMALL

[목차여기]

 

문제 상황

✔. gitignore에 작성한 파일이 repository에 push 되었다.

 

 

문제 해결

📌 원인

Git 캐시가 여전히 남아있어서 발생하는 것이다.

 

📌 해결

아래 명령어를 입력하여 캐시를 지운다.

git rm -r --cached .
git add .
git commit -m "clear git cache"
git push

 

반응형
LIST
loading