TortoiseGit:更新代码出现Another git process seems to be running in this repository异常处理
1.异常信息
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的进程已经在一个编辑器中被打开。请确保所有的进程都结束,然后再次尝试。如果仍然失败,可能是上个运行中的git崩溃,手动移除这个文件。
2.异常解决办法
- .git里的文件,里面有个index.lock文件。删除之后再继续git操作就没问题了。
3.具体操作
- window下打开‘我的电脑’,在工具/文件夹选项/查看/里 勾选 显示隐藏的文件、文件夹或驱动器。然后进入文件夹删除index.lock文件。
- 或者你可以这样:命令行里 cd 到 .git 这个目录下, 输入命令: del index.lock 即可删除。