i need to access some repository on an unsafe server. I dont want to store my password anywhere else than current session. What I came up with so far is combination of
histcontrol ignorespace
then exporting my password
$> export SOMEVARIABLE=MySecretPassword
and then access the repo like so:
$>svn co --password=$SOMEVARIABLE <repository>
is there any better way? I'd like to avoid the --password=$SOMEVARIABLE if possible