I pull a project from azure dev-ops by git, but it fails. This is the picture below. What does the e exit code -1073741818 mean? Thanks
CodePudding user response:
There can be several types of solutions for the same error based on the above-mentioned "git did not exit cleanly (exit code ...)"
You can try the following solutions:
Configure your git email and username using the below scripts:
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
Try to find and delete
index.lock
to see it works.Try to locate in
.git/ref/heads/branchname.lock
to manually remove it.Try to stash all your changes and then pull/push again.