Eclipse Egit Failed to commit
I found what was the problem. Git locked it self witha file in the ./git/index.lock
After i removed that everything worked fine.
Thanks to @NaGeL182.. I got it working now because Git locked
So I need to delete the .git/index.lock file
- On Mac just Hit below command On Terminal
rm -f ./.git/index.lock
on Windows
del .git\index.lock
Hope this will help.