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
fuse
andsshfs
packages is however a prerequisite for that. If that's the case and you see it an option I can make it an answer. – Tagwint Jun 19 '20 at 13:43