How do I make it so that I do not have to type in the SVN password everytime I deploy?
If you are on linux, a better idea would be to skip passwords altogether: ssh [EMAIL PROTECTED] 'mkdir -p .ssh; cat >>.ssh/authorized_keys' <~/.ssh/id_dsa.pub This command will add your public key to the list of authorized keys for the deploy user on example.com. From then on, ssh [EMAIL PROTECTED] will give a shell without the need for a password. --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
