Unable to create 'C:・・・・・・.git/index.lock': File exists.
Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'. Please make sure all processes
are terminated then try again. If it still fails, a git process
may have crashed in this repository earlier:
remove the file manually to continue.
と表示されたので、エラーを読んでみると、index.lockを削除すればいいらしいです。
でも、削除の仕方がわからなかったので、調べてみると、windowsでは、
del .git\index.lock
とコマンドを打てばよいとのこと。実際にやってみるとできたので、もし同じところで詰まっているなら、参考にしてほしいです。
Macの場合は、
rm .git/index.lock
らしいです。