在Linux下使用svn co总是提示输入密码

如图:

使用Linux系统对svn上的文件进行更新的时候,总是繁琐的提示要输入密码,这样给操作带来了许多不变,因此这样处理一下就可以解决这个问题了:

1.首先找到当前用户下对应的配置文件:

   例如当前用户是testEnv则/home/testEnv/.subversion/config

2.找到如下内容:

   ###
   ### Set store-passwords to 'no' to avoid storing passwords in the
   ### auth/ area of your config directory.  It defaults to 'yes',
   ### but Subversion will never save your password to disk in
   ### plaintext unless you tell it to (see the 'servers' file).
   ### 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

3.如上说明这时候这个是开启的,那么如果需要关闭则将store-passwords = no改成true或注释掉就行了


另外:有些非root用户修改后仍然是有上图的提示,目前找不到原因,大家遇到类似情况解决方法多多跟下,共同学习,感谢~




你可能感兴趣的:(常用小笔记)