에러

Error Log

[Git] fatal: cannot lock ref 'HEAD': Unable to create '프로젝트 경로/.git/HEAD.lock': File exists.

문제 상황평소처럼 git으로 commit을 하거나, stash로 임시저장후 branch를 변경하려고 했으나, 다음과 같은 에러가 발생하였다.fatal: cannot lock ref 'HEAD' : Unable to create '프로젝트 경로/,git/HEAD.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 processesare terminated then try again. If it still fails, a git processmay have crashed in this repository earlier..

GIT

GIT 용어 정리

프로젝트의 소스 코드 뿐만 아니라 그에 관련된 모든 변경사항과 개발 내역을 기록하고 관리할 수 있는 GIT에서의 작업흐름, 주요 명령어, 헷갈릴 수 있는 명령어 간의 차이점, 흔히 만날 수 있는 에러들을 적어보고자 한다. ---------------------------------------------------------------------------------------------------------------------- Git에서의 작업 흐름(3단계) Working Directory : 현재 작업 중인 파일들이 있는 곳으로, 여기에는 Git의 관리를 받는 파일과 받지 않는 파일이 모두 존재한다. Git의 관리를 받지 않는 파일들은 Untracked 상태라고 표현한다. ↓ Index Stage(..

개발자참치
'에러' 태그의 글 목록