sjain
sjain

Reputation: 23344

git.Run() had no output

I created git repository previously and then I started working on a project which was on the server. I did push and pull just fine. But later on due to some conflicts, I deleted my local repository.

But now whenever I try to create a local repository, I get the following error:

git.Run() had no output.

I didn't found any solution on net after searching a lot.

Don't know what happened with TortoiseGIT and msysgit.

Upvotes: 2

Views: 88

Answers (2)

Ravi Sharma
Ravi Sharma

Reputation: 873

Try this:

1. Uninstall TortoiseGit

2. Delete TortoiseGit registry using regedit.exe on windows.

3. Reinstall TortoiseGit

Hope this helps.

Upvotes: 2

VonC
VonC

Reputation: 1323793

The issue 667 from TortoiseGit mentions:

I had the problem too and fixed it:

In the TortoiseGit Settings --> General, you have to specify the following folder for "Git.exe Path": "C:\msysgit\bin" and not "C:\msysgit\git" ("C:\msysgit" your individual msysGit-Root)
After clicking on "Check now" the ".dll" should be passed automatically and the versionnumer should be displayed which is not the case if you use the git folder.

git exe

Upvotes: 1

Related Questions