您的位置:首页 > 其它

【git常见问题】 fatal: Unable to create index.lock File exists 错误的解决办法

2018-02-01 10:07 1926 查看

一、问题描述

使用git commit 命令提交代码,遇到下面的错误:

$ 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 文件,将其删除,即可解决问题。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐