[git] Another git process seems to be running in this repository
2018. 5. 1. 09:32
ETC
fatal: Unable to create 'E:/workspace/source/.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 checkout 시에 에러가 발생하면 다른 프로세스에서 git ..
[GIT] 추적하지 않는 파일 삭제
2018. 2. 24. 12:43
ETC
$ git status 추적하지 않는 파일: (커밋할 사항에 포함하려면 "git add ..."을 사용하십시오) third_party/abc/ third_party/def/ third_party/ghi/위와 같이 추적하지 않는 파일(Untracked files)을 일괄적으로 지우려면 보통 git clean 명령을 이용하게 된다.파일만 삭제 $ git clean -f디렉토리도 삭제$ git clean -fd.gitignore 에서 정의한 ignore 파일 포함 삭제$ git clean -fxignore 파일 및 디렉토리 포함 삭제$ git clean -fdxSkip이 되어 지워지지 않는 경우그런데 간혹 위의 명령을 실행하면 skip을 하는 경우가 있다.$ git clean -fd third_party/ab..