当前位置:   article > 正文

git无法add操作,报错 git process seems to be running in this repository..._似乎另外一个 git 进程在这个仓库中运行,例如:'git commit' 命令打 开了一个编辑

似乎另外一个 git 进程在这个仓库中运行,例如:'git commit' 命令打 开了一个编辑

问题描述:

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.


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

原因分析:

可能是上一次进行到git commit -m的时候强制退出了,造成产生.lock文件


解决方案:

删除lock文件


# $ rm -rf COMMIT_EDITMSG 好像这个删不删无所谓
$ rm -rf .git/index.lock

  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/713641
推荐阅读
相关标签
  

闽ICP备14008679号