Environment : Eclipse Indigo, Ubuntu 11.04, Subclipse 1.6 SVN Clients : Subclipse, RabbitVCS

I'm connecting via svn+ssh. My URL looks like :

svn+ssh://[MY NAME]@[MY DOMAIN]/[PATH]

I can connect to the repo just fine. The problem is that every time I try to communicate with the repo, it prompts me for a password. Really annoying!

I get the impression that SVN has the ability to cache passwords -- I've read that's what the ./subversion/auth folder is for. However, my ./subversion/auth folder contains four empty folders.

I've experienced this behavior with both Subclipse and RabbitVCS.

Is there any way to force SVN to cache my credentials?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You need to use Public Key Authentication with SSH:

https://help.ubuntu.com/community/SSH/OpenSSH/Keys

It will enable you to used svn over ssh without entering a password every single time, with help of a common SSH agent.

Subversion itself caches credentials only to servers using HTTP/DAV.

link|improve this answer
Note that if you choose to use a password with your ssh keys, it will still prompt you for it, no caching – sbrichards Aug 17 '11 at 2:10
@sbrichards you're wrong, ssh-agent can cache passwords – sanmai Aug 17 '11 at 7:33
Awesome. I was confused because my coworker got his machine to cache his credentials, but it looks like he has a keypair set up. Thanks! – sangfroid Aug 17 '11 at 18:16
feedback

Maybe this may help to someone. Check whether ~/.subversion folder is owned by wrong user, so it may be read-only to user who is using it.

sudo chown -R your_username:your_group ~/.subversion
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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