Assaf Lavie
Assaf Lavie

Reputation: 75963

how to tell Git (msysgit on Windows) to use ssh and not pageant

I installed Git a while back on my Win7 machine and told it to use Putty for doing ssh. So now it expects Pageant to be running all the time in order to be able to connect to GitHub.

Today I installed a newer version of Git and told it to use OpenSSH, not Putty. But it keeps trying to authenticate by looking for Pageant.

My identity files are configured correctly, and if I do ssh [email protected] from my BASH prompt it succeeds. Still, the only way to the remote repo is if Pageant is running.

Where is this configured and how can I instruct msysgit to forget about putty/pageant?

Upvotes: 5

Views: 4635

Answers (1)

VonC
VonC

Reputation: 1323773

MsysGit should take its ssh program from the GIT_SSH environment variable, so even if you did install a newer version, check that your current session include the right GIT_SSH value.

Upvotes: 9

Related Questions