有時候在提交的時候,中間提交出錯,致使有文件被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