问题描述:
git 无法git add .
,报错如下
$ git add .
fatal: 无法创建 '/Users/hy/Desktop/project/app/xintraapp/.git/index.lock':File exists。
似乎另外一个 git 进程在这个仓库中运行,例如:'git commit' 命令打
开了一个编辑器。请确认所有进程都已经关闭然后重试。如果仍然报错,
可能之前有一个 git 进程在这个仓库中异常退出:
手动删除这个文件再继续。
# 原版英文
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 commit -m
的时候强制退出了,造成产生.lock
文件
解决方案:
删除lock文件
# $ rm -rf COMMIT_EDITMSG 好像这个删不删无所谓
$ rm -rf .git/index.lock