git can't remember my passphrase - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T09:11:52Z http://stackoverflow.com/feeds/question/370030 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/370030/git-cant-remember-my-passphrase 3 git can't remember my passphrase Subnus 2008-12-15T23:12:26Z 2008-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&gt;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#370050 1 Answer by Grant Limberg for git can't remember my passphrase Grant Limberg 2008-12-15T23:19:46Z 2008-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#370054 6 Answer by Dustin for git can't remember my passphrase Dustin 2008-12-15T23:22:04Z 2008-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#370063 0 Answer by Subnus for git can't remember my passphrase Subnus 2008-12-15T23:30:22Z 2008-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#370219 0 Answer by Cebjyre for git can't remember my passphrase Cebjyre 2008-12-16T00:56:55Z 2008-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>