Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Could the %PATH% be different for some reason? – Jonas Heidelberg Sep 19 '11 at 11:46

3 Answers

up vote 24 down vote accepted

For those looking for a better explanation have a 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.

share|improve this answer
2  
This should really be the answer! – caveman_dick Aug 14 '12 at 14:18
This is the right answer. The accepted answer assumes that TortoiseGit or TortoiseHg is installed. As this answer points out, all you need to fix the problem is Msysgit. – carleeto Nov 20 '12 at 21:21

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?

share|improve this answer

If you are using posh-git and getting this warning, you can turn it off by commenting (adding a '#' sign to) the following line

Start-SshAgent -Quiet

In the file

Documents\WindowsPowerShell\Modules\posh-git\profile.example.ps1
share|improve this answer
2  
As an added bonus, if you don't need/want SSH support, and you're having a really slow powershell launch even with adding ssh-agent.exe PATH fix, commenting this line out speeds the launch up a ton. – MechEthan Mar 14 at 1:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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