I have msysgit installed, with OpenSSH. I am connecting to a gitosis repo.

From the git bash, I have created a .profile file that runs ssh-agent (if not already running) each time git bash is opened.

Here is my script: http://www.cygwin.com/ml/cygwin/2001-06/msg00537.html

I am also using git extensions, which runs the git command from the windows command prompt, not git bash. So, ssh doesn't see the ssh-agent that is running. Is it possible to fix this?

Thanks!!

link|improve this question

feedback

2 Answers

Even though you've probably solved it... use the eval command to make the ssh_agent process stick

eval `ssh-agent.exe`

Than use ssh-add to add the keys you need.

link|improve this answer
feedback

You could wrap your git executable with a script that sources your .profile, causing the ssh-agent environment variables to be loaded.

Either put a script called git in a directory earlier in your path than the real git, or configure the git extensions to call your wrapper in place of the real git.

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.