• SVN 使用


    svn --version
     
    svn list
     
     
     
    下载代码:
    svn checkout http://svn.server.com/svn/project_repo [--username=tom]
     
    新建分支:
    方法1:
    svn copy trunk branchs/new_branch_name
    svn commit -m "commit info"
    方法2:
    svn cp -m "create branch" http://svn_server/xxx_repository/trunk http://svn_server/xxx_repository/branches/br_feature001 
     
    删除分支:
    方法1:
    svn rm branchs/branch_name
    svn commit -m "commit info"
    方法2:
    svn rm http://svn_server/xxx_repository/branches/br_feature001

    分支信息:
    svn info
     
    分支切换:
    svn switch branch_name  (变更branch并且把当前修改合并到新branch)
     
    分支状态:
    svn status
     
    更新分支:
    svn update [filename]
     
    变更信息:
    svn diff
     
    提交的过程:
    svn add filename
    svn commit -m "commit info"
     
    撤销修改:
    svn revert filename
     
     
    历史信息:
    svn log
     
    解决冲突之后告知svn:
     
    svn resolve --accept=working filename
     
    分支合并:
    切换到trunk branch
    svn merge 分支branch
     
    参考:
    http://blog.csdn.net/maomaoduoer/article/details/12781547
    http://wiki.jikexueyuan.com/project/svn/environment-setup.html
     
  • 相关阅读:
    upcoj 2169 DP
    hdu3415 单调队列
    hdu4417(树状数组)(线段树)(划分树+二分)
    poj3264 线段树水题
    STL Map hdu1004,1075,1263
    hdu1166线段树水题
    <<<<<<<<<用来存代码哒!!!!>>>>>>>>>>>>
    jQuery
    apache配置php
    linux关机、重启命令
  • 原文地址:https://www.cnblogs.com/AndyStudy/p/8797873.html
Copyright © 2020-2023  润新知