SVN 学习笔记

命令参考

Api手册

清除用户密码   

rm ~/.subversion/auth

撤销本地svn操作 svn revert

解决冲突     

SVN 学习笔记

分支处理

  拷贝分支  

svn copy http://svn.example.com/repos/calc/trunk \
http://svn.example.com/repos/calc/branches/my-calc-branch \
-m "Creating a private branch of /calc/trunk."

  分支merge回主干

$ pwd
/home/user/my-calc-branch $ svn merge http://svn.example.com/repos/calc/trunk
--- Merging r345 through r356 into '.':
U button.c
U integer.c
$ svn commit -m "Merged latest trunk changes to my-calc-branch."//有冲突选post,手动解决后,svn resloved,ci提交
 

恢复历史版本

//查找历史版本
$ cd parent-dir
$ svn log -v

------------------------------------------------------------------------
r808 | joe | -- :: - (Fri, Dec ) | lines
Changed paths:
D /calc/trunk/real.c
M /calc/trunk/integer.c

将历史版本恢复到现在的版本

$ svn copy http://svn.example.com/repos/calc/trunk/real.c@807 \
http://svn.example.com/repos/calc/trunk/ \
-m "Resurrect real.c from revision 807."
Committed revision . $ svn update
A real.c
Updated to revision .

直接获取svn历史版本文件

svn up -r 版本号(不带r) 文件名
上一篇:Windows bat批处理删除指定N天前的文件


下一篇:Windows Bat 批处理脚本