I was wondering if there is a way to save my Subversion password when doing svn operations from the console. The console is the only option that I have. When I try to do any Subversion action, e.g. svn commit, it prompts for the account password every time. Is there a way to save this password somehow so that I don’t have to retype it every time?
I was wondering if there is a way to save my Subversion password when
Share
In
~/.subversion/config, you probably havestore-passwords = no. Change it toyes(or just comment it out because it defaults to yes), and the next time you give Subversion your password it should save it.You might want to ensure that the owner and permissions of
~/.subversion/configare correct (no public or group access; 600).