git can't remember my passphrase - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T09:11:52Zhttp://stackoverflow.com/feeds/question/370030http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/370030/git-cant-remember-my-passphrase3git can't remember my passphraseSubnus2008-12-15T23:12:26Z2008-12-16T00:56:55Z
<p>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</p>
<p>but i still get </p>
<pre><code>*\subnus.mvc>git push origin master
Enter passphrase for key '/c/Users/Subnus/.ssh/id_rsa':
</code></pre>
http://stackoverflow.com/questions/370030/git-cant-remember-my-passphrase/370050#3700501Answer by Grant Limberg for git can't remember my passphraseGrant Limberg2008-12-15T23:19:46Z2008-12-15T23:32:49Z<p>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.</p>
<p>ssh-agent may also work. Try running that and see if it will remember your passphrase.</p>
http://stackoverflow.com/questions/370030/git-cant-remember-my-passphrase/370054#3700546Answer by Dustin for git can't remember my passphraseDustin2008-12-15T23:22:04Z2008-12-15T23:22:04Z<p>That's not git, it's ssh.</p>
<p>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.</p>
http://stackoverflow.com/questions/370030/git-cant-remember-my-passphrase/370063#3700630Answer by Subnus for git can't remember my passphraseSubnus2008-12-15T23:30:22Z2008-12-15T23:30:22Z<p>I'm usign <a href="http://code.google.com/p/msysgit/" rel="nofollow">msysgit</a> if anyone know how to do it in msysgit i thing it use bash</p>
http://stackoverflow.com/questions/370030/git-cant-remember-my-passphrase/370219#3702190Answer by Cebjyre for git can't remember my passphraseCebjyre2008-12-16T00:56:55Z2008-12-16T00:56:55Z<p>I haven't used msysgit myself, but the <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" rel="nofollow">pageant</a> authentication agent <em>may</em> be helpful.</p>