博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下SVN账户密码保存设置
阅读量:5227 次
发布时间:2019-06-14

本文共 727 字,大约阅读时间需要 2 分钟。

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

打开SVN配置文件:

vim /home/
/.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操作时就不用再输入用户名和密码了。

 

(文章来源:)

转载于:https://www.cnblogs.com/liuzhi/p/3917069.html

你可能感兴趣的文章
高性能网站优化——请求响应原理
查看>>
Spring3 + Spring MVC+ Mybatis 3+Mysql 项目整合
查看>>
Android 中的MVC MVP MVVM
查看>>
Oracle练习题(1~19)
查看>>
利用JAVA想数据库中提交数据
查看>>
WOJ 41 约数统计
查看>>
两次考试
查看>>
RabbitMQ学习在windows下安装配置
查看>>
Git安装和使用(谨记)
查看>>
javascript-观察者模式
查看>>
python中数字和字符串连接的两种方法
查看>>
Centos下安装Scrapy
查看>>
HDU4725(The Shortest Path in Nya Graph)
查看>>
谈谈对Spring IOC的理解
查看>>
解决CSS垂直居中的几种方法(基于绝对定位,基于视口单位,Flexbox方法)
查看>>
结对第一次—原型设计(文献摘要热词统计)
查看>>
The 2014 ACMICPC Asia Regional Xian
查看>>
了解JavaScript核心精髓(一)
查看>>
redis的使用与 django的redis的使用
查看>>
一个漂亮灵活的PHP图片验证码
查看>>