Home > Net >  Azure dev ops clone, git did not exit cleanly (exit code -1073741818)
Azure dev ops clone, git did not exit cleanly (exit code -1073741818)

Time:06-06

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

enter image description here

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:

  1. Configure your git email and username using the below scripts:

    git config --global user.email "[email protected]"

    git config --global user.name "Your Name"

  2. Try to find and delete index.lock to see it works.

  3. Try to locate in .git/ref/heads/branchname.lock to manually remove it.

  4. Try to stash all your changes and then pull/push again.

  • Related