小编典典

此存储库中似乎正在运行另一个 git 进程

all

我正在尝试学习如何使用 Git,并创建了一个带有 HTML、CSS 和 Javascript
文件的小项目。我从我基本上是空的项目中创建了一个分支,然后对我的代码进行了一些更改。我尝试暂存更改,但收到以下错误消息:

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 bash,因为我不知道如何摆脱我已经到达的地方。

有什么办法可以解决这个问题,还是我应该开始一个新的存储库?


阅读 110

收藏
2022-02-28

共1个答案

小编典典

尝试删除index.lock目录中的.git文件。

rm -f .git/index.lock

当你同时执行两个git命令时,一般会出现这样的问题;可能一个来自命令提示符,一个来自 IDE。

2022-02-28