티스토리 뷰

들어가며

  • Git을 사용하다 보면 아래와 같은 메시지를 심심치 않게 볼 수 있다.

fatal: Unable to create '/path/to/repo/.git/index.lock': File exists.

If no other git process is currently running, this probably means a
git process crashed in this repository earlier. Make sure no other git
process is running and remove the file manually to continue.
  • 하염 없이 기다려도 계속 발생할 때 아래 방법을 사용하길 바란다.


해결 방법

  • 먼저 git 프로젝트 루트의 위치에서 index.lock 파일을 삭제해주자

rm -f ./.git/index.lock

 

  • 그럼 해결이 될 것이다. 만약 현재 프로젝트를 원상태로 돌리고 싶다면 아래의 명령을 날려보자.
git read-tree --reset HEAD

끝으로

이 글이 도움이 되었다면, 하단의 Google 광고 👎👎👎 한번씩 클릭 부탁 드립니다. 🙏🙏🙏

광고 클릭은 많은 힘이 됩니다! 

반응형
댓글