First, CentOS installation tortoisesvn yum install-y Subversion
Two, SVN client command
1. View Help command: SVN helper
Start the service
To start a service using the command Svnserve
Svnserve-d-r/srv/svn/repos
You can also add port number svnserve-d--listen-port 9999-r/srv/svn/repos
Note: The following path must be a warehouse path created by svnadmin, otherwise an error will be made: not a repository
2. Synchronizing (checkout) server data to local command: SVN checkout [directory] svn co [directory]
eg
#cd/www/website
#svn Co Svn://svn_site_url./
3. Commit (commit) local document to server command: SVN commit-m "" [Directory|file] svn ci-m "" [Directory|file]
4. Update server data to local command: SVN update [directory|file] svn up [directory|file]
5. View Log command: SVN log [directory|file]
6, add (add) Local data to the server
Command: SVN add
7, the project exports export
Command: SVN export--force svn_project_dir target_dir
CentOS Installation TortoiseSVN SVN client