git index.lock

在git没有运行完成的时候强制关闭,下次提交的时候产生错误

fatal: Unable to create '/xxx/xx/.git/index.lock': File exists.

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.
原因:
    在你进行某些比较费时的git操作时自动生成,操作结束后自动删除,相当于一个锁定文件,目的在于防止对一个目录同时进行多个操作。有时强制关闭进行中的git操作,这个文件没有被自动删除,之后你就无法进行其他操作,必须手动删除

所以需要手动删除

进入git文件中删除,我在我的远程机器上没有看见.git文件夹,所以只能用命令

直接用命令,之后就可以正常使用

 rm -f ./.git/index.lock

你可能感兴趣的:(前端,git)