I have git installed and it works great in the command prompt, but when I open up powershell it gives me this warning:

WARNING: Could no find ssh-agent

I have pageant running and loaded with my private key. This works in all the gui tools and the command prompt but not in Powershell.

What's going on?

link|improve this question

1  
Could the %PATH% be different for some reason? – Jonas Heidelberg Sep 19 '11 at 11:46
feedback

2 Answers

up vote 6 down vote accepted

I figured it out. You need to set GIT_SSH environment variable on your machine to point to TortoisePlink.exe. This could be the one installed with TortoiseHg or TortoiseGit, but just make sure that you use the same one system wide. Reset your machine and it should work now. How annoying is that?

link|improve this answer
feedback

For those looking for a better explanation have read of this. Below is an quote from the blog post. Ultimately the ssh-agent.exe needs to be in the path.

When I restarted my PowerShell prompt, it told me it could not start SSH Agent.

It turns out that it was not able to find the “ssh-agent.exe” executable. That file is located in C:\Program Files (x86)\Git\bin. but that folder isn’t automatically added to your PATH by msysgit.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.