Gitエラー【fatal: Unable to create ‘path/.git/index.lock’: File exists.】

コミットする前にpullし忘れてしまい、コンフリクトが起こってしまったのでコンフリクトを解消しようとgit resetしようとしたところ Gitでのエラーで以下のようなものが出てしまいました。

fatal: Unable to create 'path of project/.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.lockというロックファイルが正常に削除されていないのでGitの操作ができないというエラーでした。

そこで手動でこのファイルを削除すれば元に戻ります。

$cd gitプロジェクトのパス
$cd .git
$rm index.lock

これで無事、解決です。しかしそもそもなぜ発生したのかが分からず・・・