git遇到的问题-- Another git process seems to be running in this repository

执行git add .时,报错git

fatal: Unable to create '/Users/lily/ForWork/forReBaomai/bm-fe/.git/index.lock': File exists.编辑器

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.this

大体意思是说:在/Users/lily/ForWork/forReBaomai/bm-fe/.git里建立index.lock失败:文件已存在。git的进程已经在一个编辑器中被打开。请确保全部的进程都结束,而后再次尝试。若是仍然失败,多是上个运行中的git崩溃,手动移除这个文件进程

解决方法:open /Users/lily/ForWork/forReBaomai/bm-fe/.git 打开.git文件夹,删除该文件下的.git文件便可资源

    或者 rm -f ./.git/index.lockrem

缘由:听说是计算机对于进程的同步互斥管理,是有资源上锁机制的。猜想这里确定是有进程对某资源进行了加锁,可是因为进程忽然崩溃,将来得及解锁,致使其余进程访问不了同步

查了半天只查到这么一个缘由,全部文章都只有这么一个解释,暂时记着吧it

相关文章
相关标签/搜索