如何终止当前 运行 的 git 进程?
how to terminate git process which is running currently?
$ git commit -m "45"
fatal: Unable to create 'F:/SoftifyBD/Projects/proj-4/CMS_Latest/contentmanagementsystem/.git/index.lock': File exists.
此存储库中似乎有另一个 git 进程 运行,例如
'git commit' 打开的编辑器。请确保所有进程
被终止然后再试一次。如果还是失败,一个git进程
之前可能在此存储库中崩溃过:
手动删除文件以继续。
当我遇到同样的问题。我找到了一个解决方案,它是
rm -f ./.git/index.lock
请尝试一下。谢谢...
$ git commit -m "45"
fatal: Unable to create 'F:/SoftifyBD/Projects/proj-4/CMS_Latest/contentmanagementsystem/.git/index.lock': File exists.
此存储库中似乎有另一个 git 进程 运行,例如
'git commit' 打开的编辑器。请确保所有进程
被终止然后再试一次。如果还是失败,一个git进程
之前可能在此存储库中崩溃过:
手动删除文件以继续。
当我遇到同样的问题。我找到了一个解决方案,它是
rm -f ./.git/index.lock
请尝试一下。谢谢...