为什么每次执行svn命令都需要显式输入密码

时间:2015-12-16 12:20:03

标签: svn

现在发现svn,ubuntu系统(Ubuntu 14.04.3 LTS)的问题,每次都要在终端执行svn命令需要明确输入密码。见下文:

$ sudo apt-get install subversion
$ svn --version
svn, version 1.8.8 (r1568071)
   compiled Aug 20 2015, 12:51:30 on x86_64-pc-linux-gnu
svn checkout https://svn.foo.com/svn/server/bar
cd bar
$ svn log|head
Authentication realm: <https://svn.foo.com:443> VisualSVN Server
Password for 'foo':

为什么每次都需要我输入密码?我怎么能存储它?并且official doc没有明确说明如何存储密码,因此它似乎是svn默认存储密码。

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

我通过以下工作解决了上述问题

# foo is my current login username
which svn
-rwxr-xr-x 1 foo foo 266528  8月 20 21:19 /usr/bin/svn
rm -rf .subversion
svn checkout https://svn.foo.com/svn/server/bar
cd bar
# do not need input password now
svn log|head

至于真正的原因之前为什么不能存储密码我&#39;我不清楚。也许是因为这个 enter image description here