How to save the SVN account password in Linux
In Linux, when SVN is used for updates and other operations, the user name and password are always prompted, which is inconvenient. Therefore, I searched the solution and summarized it as follows:
Open the SVN configuration file:
Vim/home/<user>/. subversion/config
Find the following code:
### Set store-passwords to 'no' to avoid storing passwords in
### 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
Change the row store-passwords = no:
Store-passwords = yes
In this way, the user name and password are no longer required for the next SVN operation.
Set up SVN server svn in Ubuntu 14.04 ://
CentOS 6.2 SVN setup (YUM installation)
Deploy Apache + SVN in CentOS 6.5
Build an SVN server using Apache + SVN
Set up and use the SVN server in Windows + reset the password on the client
Install SVN in Ubuntu Server 12.04 and migrate Virtual SVN data
Build svn service and migration method on Ubuntu Server
This article permanently updates the link address: