vote up 3 vote down star

I have just start using git and i can't get it to remember my passphrase I'm using cmd.exe elevated and my git host is github and i have create a ssh key like that guide on github

but i still get

*\subnus.mvc>git push origin master
Enter passphrase for key '/c/Users/Subnus/.ssh/id_rsa':
flag

4 Answers

vote up 6 vote down check

That's not git, it's ssh.

I don't do windows, but ssh has an agent concept that can remember passphrases for you. OS X has this enabled by default. Your ssh client probably has a way to configure this.

link|flag
vote up 1 vote down

If you set a password for your key file, you'll always need to type in that password when connecting. If you create a passwordless key, then you won't have to type it every time, however, anyone with access to your key file can now connect to your github account.

ssh-agent may also work. Try running that and see if it will remember your passphrase.

link|flag
vote up 0 vote down

I'm usign msysgit if anyone know how to do it in msysgit i thing it use bash

link|flag
What people need to know is what ssh implementation you are using. Can you please edit your post to reflect that it's an ssh issue, not a git issue? – skiphoppy Dec 16 at 19:24
Never mind; there are likely to be a lot of other people who think this is a git issue. This is the right title. :) But it still has nothing to do with bash. – skiphoppy Dec 17 at 3:29
vote up 0 vote down

I haven't used msysgit myself, but the pageant authentication agent may be helpful.

link|flag

Your Answer

Get an OpenID
or

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