zoukankan      html  css  js  c++  java
  • Linux下SVN账户密码保存设置

    Linux下用SVN进行更新等操作时,总是提示输入用户名和密码,很不方便。因此搜了下解决办法,总结如下:

    打开SVN配置文件:

    vim /home/<user>/.subversion/config

    找到如下代码:

    ### 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

    store-passwords = no这行更改为:

    store-passwords = yes

    这样在下次进行SVN操作时就不用再输入用户名和密码了。

  • 相关阅读:
    css3 box-shadow
    JS的Document属性和方法
    简单配色方案web
    ps中参考线的使用技巧
    min-width() ie6
    js 模拟右键菜单
    display:table-cell
    js opener 的使用
    js的 new image()
    CSS 中文字体 Unicode 编码方案
  • 原文地址:https://www.cnblogs.com/shockerli/p/svn-auth-save.html
Copyright © 2011-2022 走看看