Post

git commit 오류

1
2
3
4
5
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/index.lock 파일을 삭제하면 됨

  • 리눅스 환경
1
rm -f ./.git/index.lock
  • 윈도우
1
2
// .git 경로일 때
del index.lock

참고 블로그

This post is licensed under CC BY 4.0 by the author.