Back

Explore Courses Blog Tutorials Interview Questions
+2 votes
2 views
in DevOps and Agile by (29.3k points)

I'm trying to learn how to use Git and have created a small project with an HTML, CSS, and Javascript file. I made a branch from my basically empty project and then made some changes to my code. I tried staging the changes but I get the following error message:

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.

Granted, I did run into problems trying to commit my empty project earlier and just quit git bash since I didn't know how to get out of where I somehow had gotten.

Is there any way for me to fix this or should I just start a new repository?

1 Answer

+2 votes
by (50.2k points)
edited by

This problem occurs when you execute two git commands simultaneously; maybe one from the command prompt and one from an IDE.

Try:

rm -f .git/index.lock

This command will remove the index.lock folder in .git directory. So that it works fine.

For more commands like this please go through the following tutorial that will help you understand the git:

by (29.3k points)
This worked for me. thanks

Browse Categories

...