Linux客户端SVN安装

1、在Ubuntu下安装SVN
执行命令:sudo apt-get install subversion  && yum install subversion

2、SVN Check out时需要一直输入密码的问题
在/home/<user>/.subversion/目录下的config文件找到一下配置:
### Section for authentication and authorization customizations.
[auth]
### Set store-passwords to 'no' to avoid storing passwords in the
### auth/ area of your config directory.  It defaults to 'yes'.
### Note that this option only prevents saving of *new* passwords;
### it doesn't invalidate existing passwords.  (To do that, remove
### the cache files by hand as described in the Subversion book.)
# store-passwords = no
将“store-passwords = no” 解注释或将其值设置成true。

猜你喜欢

转载自kfcman.iteye.com/blog/2019262