Git常见问题:fatal: Unable to create index.lock File exists 错误的解决办法
·
报错内容:
$ git commit -m 'Test'
fatal: Unable to create 'D:/MyProject/.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 文件夹。打开该文件夹。找到文件夹里面的index.lock 文件,将其删除,即可解决问题(如果提示不能删除文件,就重启系统)
表现形式:
提交后更改数为0,修改了文件后点击保存,更改数就会变成无。形成一种脱机现象,文件修改无效,也无法上传。
产生原因:
应该是由于git操作的时候修改了一些文件导致的操作冲突被锁住了
更多推荐
已为社区贡献1条内容
所有评论(0)