This is the error I get when I attempt to add files to my git repo (git add.):
fatal: Unable to create 'C:/Users/path/to/my/file/.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.
I've seen the other questions on here about how to remove .git/index.lock from the repo, but running git rm -f ./.git/index.lock is just not working for me. Is there a way I can remove it manually? Or is my last resort to create a new git repo and push all my files into a new repo? I've never had this happen before...
git rm ..., you just dorm ....