Git操作异常:Another git process semms to be running in this repository, e.g. an editor opened by ‘git co

在执行Git操作是报出下面的异常信息:

Another git process semms 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 remove the file manually to continue

原因是Git被一个程序所占用,部分资源被锁定后没有被释放。

解决方法:进入到Git所在的文件夹中,存在一个隐藏的文件.git文件。进入到这个文件中,然后会看到一个index.lock文件,删除该文件即可。在终端操作时,进入到对应的文件夹中,使用下面的命令:

rm .git/index.lock
//或者
rm index.lock

你可能感兴趣的:(Git)