1、查看svn下账号认证
svn auth
2、删除svn认证账号
rm -rf auth
3、检出
svn checkout svn://路径(目录或文件的全路径)
svn update 在仓库路径下更新分支
4、添加新文件
svn add 文件名
5、提交
svn commint -m “message”
eg:
svn add test.php <- 添加test.php
svn commit -m “添加我的测试用test.php“ test.php
svn add *.php <- 添加当前目录下所有的php文件
svn commit -m “添加我的测试用全部php文件“ *.php
6、删除文件
svn delete 文件名
网友评论