[Git] Another git process seems to be running in this repository 에러 해결 본문

Github

[Git] Another git process seems to be running in this repository 에러 해결

최재강 2021. 9. 14. 13:33

git 작업을 하다가 폴더 구조를 바꾸게 되어서 바꾼 폴더들에 git add, commit을 시도하니 다음과 같은 에러 메세지가 나왔습니다

 

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

Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'. Please make sure all processes
are terminated then try again. If it still fails, a git process
may have crashed in this repository earlier:
remove the file manually to continue.

 

폴더 구조가 바뀌면서 git 관련 경로가 꼬인 것 같습니다.

해결방법

rm -rf ./.git/index.lock

해당 lock파일을 지우고 다시 시도하니 정상적으로 git 작업을 완료했습니다.

 

 

참조

'Github' 카테고리의 다른 글

[Github] 특정 폴더만 clone 받기  (3) 2021.09.27
[Github]Git 내 컴퓨에 계정 등록  (0) 2021.08.31
[Github] 토큰 생성과 로그인 방법  (0) 2021.08.24
Comments