We had a problem like this and actually proposed a new feature for Fabric, but the developer we spoke to suggested this instead.
import getpass password = getpass.getpass('Enter SVN Password: ') run("svn update --password '%s'" % password)
This will give you a password when the time comes to create this team.
I believe that your password will be displayed in the trend log, however, the best option would be to force SVN to request a password and enter the password into it.
run('echo %s | svn update
I do not use SVN, although I'm afraid I'm not sure if this is possible. I hope someone there can help!
mac
source share