728x90
반응형
git add 명령어를 사용하면 아래와 같은 에러가 발생하는 경우가 생깁니다.
fatal: Unable to create '{your-file-path}/.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.
해결방법
rm -rf 명령어로 .git/index.lock 파일을 직접 제거함으로써 간단하게 문제를 해결할 수 있습니다.
rm -rf ./git/index.lock
728x90
반응형
그리드형
'개발 > Git' 카테고리의 다른 글
깃 특정 태그로 이동하는 방법 (How to checkout Git Tags) (1) | 2021.01.19 |
---|---|
Git commit으로 issue 종료하는 방법 (close issue with commit) (2) | 2020.12.08 |
깃 커밋 메시지 컨벤션 (Git Commit Message Convention) (1) | 2020.11.20 |
깃 로컬 브랜치 한번에 정리하는 방법 (Delete all local git branches) (2) | 2020.10.23 |
gitignore 캐시 삭제하기 (clear gitignore cache) (4) | 2020.02.14 |
이 포스팅은 쿠팡파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.