codecamp

svn 游记

公司之前用 svn 管理项目代码,我一直用的 windows 版本

近期想要搭建知识库云平台​,需要在 linux 上使用 svn 管理代码,因此做些笔记

直接使用公司搭建好的 svn 服务器​

​1. 客户端安装

    yum install -y subversion​   或

    apt-get install subversion

2. ​同步代码至本地

    svn checkout https://192.168.xxx.xxx/xxx

3. ​同步代码至最新版

    svn update

4. 显示版本列表

    svn log

5. 显示不同版本之间的不同

    svn diff -r A                显示当前版本(working copy)与A版本的不同

    svn diff -r ​​A:B             显示A版本与B版本的不同

    svn diff -r A  text.c     显示当前版本(working copy)与A版本指定文件的不同

    svn diff -r A:B text.c ​  显示A版本与B版本指定文件的不同

6. 打patch

    svn diff 将结果输出到test.patch文件中

    patch -p​ NUM < patch file

    若patch文件更新的是a/b/c.txt

    patch -p0 < test.patch   更新a/b/c.txt文件

    patch -p1 < test.patch   更新​​b/c.txt文件

    patch -p2 < test.patch   更新c.txt​文件


apt-get -t jessie-backports
本地连接 网络状态 详细信息为空
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }