Reputation: 10024
I'm writing Python app which uses pysvn to get svn log history. It works ok for http:// like urls, but for svn+ssh:// I get prompted for a password on the command line!
I use callback_get_login to authenticate.
Is there any way to avoid the prompt and authenticate with pysvn for svn+ssh svn repos?
Upvotes: 3
Views: 1810
Reputation: 1671
This is the normal behavior for svn+ssh. Unless you have SSH Keys deployed and are connecting using the username for that host, you are going to have this issue.
Unfortunately, after some research it looks like PySVN may not support the use of SSH keys at this moment in time.
Upvotes: 1