[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
반응형
'프로그래밍 > 형상관리' 카테고리의 다른 글
[git] filename too long (0) | 2019.07.15 |
---|---|
[git] merge tool setting. kdiff3 (0) | 2019.06.14 |
[GIT] cpp 파일을 Binary file로 인식할 때 (0) | 2019.01.15 |
[GIT] ignore 따로 두기 (0) | 2017.11.15 |
[GIT] git remote url 변경하기 (0) | 2017.07.10 |
[GIT] git pull no tracking info 에러 (0) | 2017.02.08 |
[Git] git commit 원격에서 메일 받기 (0) | 2017.01.05 |