Another git process seems to be running in this repository
Posted fancylee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Another git process seems to be running in this repository相关的知识,希望对你有一定的参考价值。
git add . 报错
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在使用过程中遭遇了奔溃,部分被上锁资源没有被释放导致的。
解决方案:
进入项目文件夹下的 .git文件中【删除index.lock文件】,如若看不到该文件,需要显示隐藏文件夹。或者直接执行 【rm .git/index.lock】
注【显示文件夹
defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder
隐藏文件见
defaults write com.apple.finder AppleShowAllFiles -boolean false ; killall Finder】
!-- p.p1>以上是关于Another git process seems to be running in this repository的主要内容,如果未能解决你的问题,请参考以下文章
Another git process seems to be running in this repository
“Another git process seems to be running in this repository...”Git此问题解决
git遇到的问题-- Another git process seems to be running in this repository
Git 使用中显示“Another git process seems to be running in this repository...”问题解决
Another git process seems to be running in this repository, e.g. an editor opened by ‘git commit‘. P
解决Git stash pop 后Git出现Another git process seems to be running in this repository......错误信息