1、启动svn服务
svnserve -d -r /home/xxxx/xxxxx/docrepos/
//路径要到数据仓库路径下
ls -l ./docrepos
4096 8月 24 20:01 conf
4096 8月 27 12:24 db
2 8月 17 00:20 format
4096 8月 17 00:20 hooks
4096 8月 17 00:20 locks
229 8月 17 00:20 README.txt
2、结束svn服务
ps -ef|grep svn
xxxx 7517 1 0 12:21 ? 00:00:00 svnserve -d -r /home/xxxx/svnserve/docrepos/
kill -9 7517
3、checkout文件
mkdir netfiles
cd netfiles
svn co svn://xxx.xx.xx.37/nfrepos/
4、add 添加新文件
svn add path
5、commit 提交文件
svn ci -m "some infomation about file" path
6、delete 删除文件
svn delete path -m "delete infomation"