I'm behind an authenticating proxy and need to access a remote SVN repo over https using git svn
.
The proxy is defined in my ~/.subversion/servers
file.
When I start with git svn fetch
, I get an error message:
RA layer request failed: OPTIONS of 'http://url/to/repos/branches/experimental'
Ok. No problem. Let's write down the credentials to ~/.subversion/servers
→ everything works fine.
However, I'm a little bit uncomfortable having my domain credentials stored in a plain text file on my hard disk.
Are there other ways (especially interactive ones) to authenticate at my proxy when using git svn
over https?
Info: The PC where this should be accomplished is in a Windows domain and authentication is done with NTLM.