码迷,mamicode.com
首页 > 移动开发 > 详细

SVN Application

时间:2014-06-25 21:49:13      阅读:388      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   tar   

一、SVN客户端:TortoiseSvn

下载地址: http://tortoisesvn.net/downloads.html

安装完后重启, 右击就可以使用SVN命令

首先, 从服务器版本库那边 svn Checkout....代码, 放到本地

在checkout目录下(带有.svn文件夹), 主要有以下命令:

bubuko.com,布布扣

常用的 SVN Add...  Delete...  Rename...  Update to revision.... Revert  Get lock/Releae lock...

          本地Update 出服务器上最新代码

          add/delete/edit/rename file 都只是在本地做修改,  要执行 commit 操作才能提交到服务器上。

二、SVN服务器:Subversion

1、安装

下载地址:http://www.visualsvn.com/  

个人认为最好用VisualSVN server服务端和TortoiseSVN客户端搭配使用

安装完成后, 点击Window->VisualSVN->VisualSVN Server Manager, 就可以直接使用应用管理器来操作SVN 库

bubuko.com,布布扣

2、SVN 仓库

在Repositories可以CreateNewRepository,新建新的库, 选择库的结构如下:

bubuko.com,布布扣

1)、三个子目录的区别:

tag,一般情况下, 是用来做一个milestone的,不管是不是release,都是一个可用的版本。这里,应该是只读的。更多的是一个显示用的,给人一个可读(readable)的标记。

branch,是用来做并行开发的

trunk, 是主线

2)、仓库转移

(eg: move RepA to RepB)

•Copy RepA Repositories forder to  RepB
•Open RepB VisualSVN Server Manager
•Right click Repositories->All Tasks->import existing repository
•Copy the file ‘groups.conf’  ‘htpasswd’ ‘authz’ from RepA to RepB again to keep the permission set.
 
3、权限控制
 
Create User
Create Groups and add users
Then you can add access permissions in any directory levels or specific file.
 
4、svn hook
建完仓库后, 每个仓库下, 都有一个D:\SVNrepository\myRepositoryt\hooks 文件夹, 放SVN钩子程序, 用来提供的第三方增加自定义事物处理, 比如:
•start commit: excute when you click ’ok’,eg: judge if user has right to commit.
•pre commit: excute before the change is saved to Rep,eg: check whether the log as expected.
•post commit: excute after commit transtion end,eg:you can redeploy environment automatically by add some batch commands.

 特定hook类型里面有特定提供的参数,如

REPOS 路径, TXN 事物,USER 用户…

Test.py %REPOS% %TXN% call python/perl..script to achieve more functional control.

示例:

window下, 建pre-commit.bat文件, 放在hooks下, 则该仓库下执行commit时, 必须输入10个字符。 默认安装下,svn可以无comment提交

 

@echo off
setlocal
set SVN_BINDIR="D:\Program Files\VisualSVN Server\bin"
set REPOS=%1
set TXN=%2
rem check that logmessage contains at least 10 characters
%SVN_BINDIR%\svnlook log "%REPOS%" -t "%TXN%" | findstr ".........." > nul
if %errorlevel% gtr 0 goto err
exit 0
:err
echo Empty log messge not allowed.Please log at least 10 characters! 1>&2
exit 1

SVN_BINDIR是svnserver安装路径下的bin文件夹

 

三、版本控制过程

1、Create a repository

1)Right click in Repositories and create New Repository… 

 bubuko.com,布布扣

 2)Select the second Radio to create a Repository with trunk/baches/tags

bubuko.com,布布扣

 3)You can also set access permissions  here.

bubuko.com,布布扣

2、Import project to ${repName}/trunk

Go to the project Directory, click svn->import, input the trunk path (get path:copy the trunk URL by right click at trunk folder and click ’copy URL to clipboard’)

bubuko.com,布布扣

3、Check out trunk code to local

  New a directory ’svnTrunk’  to store trunk code, then you can excute new Branch/tag, merge etc.

bubuko.com,布布扣

4、New branches Right click in ‘svnTrunk’ and right click->svn->Branch/tag…

 bubuko.com,布布扣

note:不要在branches上先建branch_1文件夹再以此为目录地址来copy,这样会提示Path ‘branches/branch_1‘ already exists,认为branch_1就是已经建好分支, 不能再建),同样方式, 可以创建很多个分支, 并行开发

After  new branch in Repository

We can check out the branch code to working copy

Develop………….

Commit code to branch

5. Merge trunk to branch

  Note:to avoid a world of difference between branch and trunk, we’d better make branch keep pace with trunk by merge trunk to branch.

 Also, we’d better merge trunk to branch before doing merge to trunk

1)Select ‘Merge a range of revision’

bubuko.com,布布扣

2)Input trunk path, Revision range to merge

bubuko.com,布布扣

note: How to decide the merge Revisions:

Click show log to sure what the versions to merge.

bubuko.com,布布扣

3)Resolve the confict, and compile/test_compile the project

4)Commit to RepositoryT1/branches/branch_2 after step5.3 build success.

bubuko.com,布布扣

Continue to develop in branch_2

Commit chages in branch_2 to branch_2 Repository …

Repeat step5 to keep branch sync with trunk when necessary.

Merge branch_2 to trunk as step6

Merge trunk to branch  again to Mark the newest version(RecordOnly)

6.Merge branch to trunk

 1)Select ‘Reintegrate a branch’

bubuko.com,布布扣

2)Input the branch_1 path to ‘From URL’

bubuko.com,布布扣

 3)Click ‘Test merge’ Button to test if it has many conflicts. 

 4) Resolve the confict, and compile/test_compile the project

 5) Commit to RepositoryT1/trunk after step6.4 build success.

 bubuko.com,布布扣

7.Copy trunk to tag

Copy trunk to tag when we released a stable version.

bubuko.com,布布扣

8.Merge summary

1)Remember to update to newest version in working copy before merge

2)Step 1-2 Corresponds to ‘version-control step6’

3)Step 3-4 Conrreponds to ‘version-control step5’

4)Do step1-2 frequently to keep branch sync with trunk.

bubuko.com,布布扣

 

trunk log:

在Log Messages窗口的左下角勾选了"Include merged revisions"你还能看到额外的Merge information:

其中灰色的log, 是branch里自己变化的log , 包括了版本信息。

 

 

SVN Application,布布扣,bubuko.com

SVN Application

标签:style   class   blog   code   http   tar   

原文地址:http://www.cnblogs.com/jenniferhuang/p/3780904.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!