Gitについてindexをコミットできません.lockの解決策
679 ワード
今日コードを提出する時、一回の提出で、わけがわからなくて成功しなかった後、再びgit commit-aコマンドを使う時、以下のエラーが発生して、gitでもTortoiseGitでも以下の問題が発生します.
解決策:
indexが見つかりました.ロックを削除すればいい
または
転載先:https://www.cnblogs.com/victory8023/p/5549410.html
$ git commit -a
fatal: Unable to create 'e:/git/Android/XXXXXX/.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.
解決策:
indexが見つかりました.ロックを削除すればいい
または
cd .git
del index.lock
転載先:https://www.cnblogs.com/victory8023/p/5549410.html