[GIT] Git - fatal: Unable to create 'repos/.git/index.lock': File exists

2019. 1. 3. 19:51프로그래밍/형상관리

728x90
728x90

$ git reset --hard origin/repos
fatal: Unable to create 'repos/.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 파일을 지워주면 된다.

에러 메시지도 다른 git 프로세스가 돌아가지 않으면 수동으로 삭제하고 작업을 진행하라고 한다.


$ cd .git/

$ rm -rf index.lock


또는 윈도우면 그냥 .git 폴더 가서 index.lock 파일 삭제하면 된다.

728x90
반응형