最佳答案
当我尝试将我的项目树移动到git repo时,我仍然收到此错误消息。
我用这个项目检查了我的目录的权限,这些权限设置在777上。在终端中,我设置了my_project
目录:
git init
然后如果我尝试
git add .
或
git commit -m "first upload"
所以我会得到错误
fatal: Unable to create '/path/my_proj/.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.
我还尝试创建一个新的repo并在那里提交它,但不幸的是仍然存在相同的错误消息。
问题的原因是什么?