728x90
반응형
질문 : 이 저장소에서 다른 git 프로세스가 실행중인 것 같습니다.
나는 Git 사용법을 배우려고 노력하고 있으며 HTML, CSS 및 Javascript 파일로 작은 프로젝트를 만들었습니다. 기본적으로 빈 프로젝트에서 분기를 만든 다음 코드를 약간 변경했습니다. 변경 사항을 준비하려고했지만 다음과 같은 오류 메시지가 나타납니다.
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 bash를 종료했습니다.
이 문제를 해결할 방법이 있습니까? 아니면 새 저장소를 시작해야합니까?
답변
.git
디렉토리 index.lock
파일을 삭제하십시오.
rm -f .git/index.lock
이러한 문제는 일반적으로 두 개의 git
명령을 동시에 실행할 때 발생합니다. 하나는 명령 프롬프트에서, 다른 하나는 IDE에서 가져옵니다.
출처 : https://stackoverflow.com/questions/38004148/another-git-process-seems-to-be-running-in-this-repository
728x90
반응형
'개발관련 > Git' 카테고리의 다른 글
git-diff ^ M을 무시하는 방법 (0) | 2021.12.11 |
---|---|
Git 병합, Git 리베이스 사용시기 (0) | 2021.12.11 |
브랜치를 변경하지 않고 다른 Git 브랜치에서 파일보기 (0) | 2021.12.11 |
`git merge`와`git merge --no-ff`의 차이점 (0) | 2021.12.11 |
Git Bash에 복사하여 붙여 넣는 방법 (0) | 2021.12.10 |