On Mac OS X Leopard - when I try and access a remote repository from Terminal it always asks for: 1. Password 2. Username 3. Password (again)
with the message: "Authentication realm: http://svn.myserver.com:80 Subversion"
I've checked and my credentials are being stored in Keychain and SVN has access to them. Why won't it use them?
Can you provide more information? Keychain caching of passwords wasn't added until Subversion 1.4.x. Do you get any error? We'll need more information to help.
By default,
svn
(and most Unix apps) pass your local username as the username for remote login. I suspect that your account name on the Subversion server is different from your local account name. Thus, authentication fails the first time you enter your Subversion password, andsvn
, like most Unix apps then asks for the remote username and password and attempts to reauthenticate. You can pass your remote user name using the--username
option tosvn
:Tried many things from thread, this worked for me:
password-stores = keychain
in~/.subversion/config
After that subversion finally remember my credentials.
Btw this problem began when I switched from default terminal to iTerm2 + zsh + oh my zsh
I ran into the same problem when running svn commands from an ssh window. Based on some comments above I removed the associated file under ~/.subversion/auth/svn.simple and then ran my svn command from a terminal session directly on the OSX box which made a window pop up asking if I wanted to grant permission for svn to read my keychain. I granted it permission forever and now the svn command in my ssh window works without prompting me for my password.
I had a similar issue with OS X in which SVN simply refused to use my stored credentials, despite their clear registration in keychain with access granted to svn.
Turns out my
~/.subversion/auth
directory had odd permissions.sudo chmod 777 ~/.subversion/auth
resolved my issue.I solved this problem by just removing the corresponding authentication file in
~/.subversion/auth/svn.simple
(find the right one with with grep as they're named funny). Then after the next svn up in that repository (where svn asked fro username and password) it is now working correctly.