有时候在提交的时候,中间提交出错,致使有文件被lock,因此会报下面的错误:git
fatal: Unable to create ‘/msg/.git/index.lock’: File exists.web
If no other git process is currently running, this probably means a git process crashed in this repository earlier. Make sure no other git process is running and remove the file manually to continue.this
出现这种状况能够用如下解决办法:spa
试着删除 index.lock命令行
一、命令行代码 rm -f ./msg/.git/index.lockorm
二、直接去文件系统进行删除该lock文件ci