Skip to content

Latest commit

 

History

History
70 lines (43 loc) · 1018 Bytes

svn-client-usage.md

File metadata and controls

70 lines (43 loc) · 1018 Bytes

SVN 客户端使用

命令

checkout (co)

从版本库取出一个工作副本

svn checkout file:///var/svn/repos/test mine

merge

应用两组源文件的差别到工作副本路径

svn merge --reintegrate \
            http://svn.example.com/repos/calc/branches/my-calc-branch

update (up)

更新你的工作副本

svn update

add

添加文件, 目录或符号链。

svn add * --force

commit (ci)

将修改从工作副本发送到版本库

svn commit -m "added howto section."

status (stat, st)

svn status
  • K 文件锁定在工作副本。

unlock

解锁工作副本路径或URL

revert

取消所有的本地编辑

svn revert .