`
zccst
  • 浏览: 3316007 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

[svn] 解决SVN冲突攻略(手册)

阅读更多
zccst翻译

This tutorial is walkthough on how to resolve a conflict in svn (subversion)
这个手册是解决svn冲突的攻略

First I will make a test.txt
首先,我创建了一个名为test.txt的文件(在svn服务器端),并录入如下内容

test

Now I will commit the changes
现在我们提交刚刚添加的内容

C:\workspace\test>svn ci -m "making a starting point"
Sending        .
Sending        test.txt
Transmitting file data .
Committed revision 2.

Suppose we have 2 users. User1 and User2. Both of them will get and update from svn
假设我们有用户1和用户2两个人通过svn客户端获取svn服务器端的文件test.txt

C:\workspace\test>svn up
A    test.txt
At revision 2.

Now User1 will change the file to:
现在用户1更改文件test.txt内容为如下

User1 is making a conflict test

He then commits his changes
然后用户1提交刚才的更改

C:\workspace\test>svn ci -m "User1 starting a conflict"
Sending        .
Sending        test.txt
Transmitting file data .
Committed revision 3.

User2 now comes along and changes his local copy of the file not knowing that it has already been updated by User1 on the server.
用户2也对文件test.txt做了更改,此时他并不知道用户1做了更改并已提交。

test User2 making a conflict

When he tries to commit he will get and error from svn.
当用户2修改文件test.txt完毕后,准备提交时出错。

svn: Commit failed (details follow):
svn: File or directory 'test.txt' is out of date; try updating
svn: resource out of date; try updating

So User2 performs an update
根据错误提示,用户2更新了文件test.txt(此时发生了冲突)

C:\workspace\test>svn up
Conflict discovered in 'test.txt'.
Select: (p) postpone, (df) diff-full, (e) edit,
        (mc) mine-conflict, (tc) theirs-conflict,
        (s) show all options:
svn detects that theres a conflict here and require you to take some kind of action.


If you type ‘s’ here you will get a list of the commands and meaning
如果你输入s选项,则会列出所有svn解决冲突的选项,如下所示:

(e)  edit             - change merged file in an editor               #直接进入编辑
(df) diff-full        - show all changes made to merged file          #显示更改至目标文件的所有变化
(r)  resolved         - accept merged version of file

(dc) display-conflict - show all conflicts (ignoring merged version)  #显示所有冲突
(mc) mine-conflict    - accept my version for all conflicts (same)    #冲突以本地为准
(tc) theirs-conflict  - accept their version for all conflicts (same) #冲突以服务器为准

(mf) mine-full        - accept my version of entire file (even non-conflicts)#完全以本地为准
(tf) theirs-full      - accept their version of entire file (same)    #完全以服务器为准

(p)  postpone         - mark the conflict to be resolved later        #标记冲突,稍后解决
(l)  launch           - launch external tool to resolve conflict
(s)  show all         - show this list


【选择处理方式一:df】

If you type ‘df’ it will show you a all the conflicts in the following format
选择选项df,则会按如下格式显示所有冲突

Select: (p) postpone, (df) diff-full, (e) edit,
        (mc) mine-conflict, (tc) theirs-conflict,
        (s) show all options: df
--- .svn/text-base/test.txt.svn-base    Tue Aug 10 10:59:38 2010
+++ .svn/tmp/test.txt.2.tmp     Tue Aug 10 11:33:24 2010
@@ -1 +1,3 @@
-test
\ No newline at end of file
+<<<<<<< .mine +test User2 making conflict======= +User1 is making a conflict test>>>>>>> .r3
‘e’ option will open the conflicted file in the text editor that you configured for svn to use. In this case it will show

<<<<<<< .mine test User2 making conflict======= User1 is making a conflict test>>>>>>> .r3


You can resolve the conflict here by changing the text to what you desire.
For example:
你可以解决冲突通过改变文件内容,例如vim test.txt

User1 is making a conflict test User2 making conflict

save your changes and exit your text editor and it will give you the conflict options again. Now if you use the ‘r’ it will mark the file is merged with a ‘G’.  A status of ‘G’ means there was a conflict and it has been resolved.
保存更改,又出现刚才的选项。此时你使用r选项,则会合并文件。如下所示:

Select: (p) postpone, (df) diff-full, (e) edit, (r) resolved,
        (mc) mine-conflict, (tc) theirs-conflict,
        (s) show all options: e
Select: (p) postpone, (df) diff-full, (e) edit, (r) resolved,
        (mc) mine-conflict, (tc) theirs-conflict,
        (s) show all options: r
G    test.txt
Updated to revision 3.

you can now check the status with svn status. You see that test.txt is marked as ‘M’ all thats left to do is commit.
检查svn状态,你会发现文件test.txt前面已变成M

C:\workspace\test2>svn st
M       test.txt

C:\workspace\test2>svn ci -m "conflict resolved"
Sending        test.txt
Transmitting file data .
Committed revision 4.


【选择处理方式二:p】

Sometimes the conflicts are a bit more extensive and it requires more time or better tools to resolve the conflict in these cases you can chose ‘p’ to postpone the resolution.
有时,冲突会复杂一些,可能需要借助其他工具才能解决,这时你可以使用选项p

Select: (p) postpone, (df) diff-full, (e) edit, (r) resolved,
        (mc) mine-conflict, (tc) theirs-conflict,
        (s) show all options: p
C    test.txt
Updated to revision 3.
Summary of conflicts:
  Text conflicts: 1

Now if you look in your directory you will see that svn has created a few extra files for you.
此时,查看当前文件夹下,出现了如下几个文件

08/10/2010  11:44 AM                94 test.txt
08/10/2010  11:44 AM                26 test.txt.mine
08/10/2010  11:44 AM                27 test.txt.r2
08/10/2010  11:44 AM                31 test.txt.r3

The test.txt file is now a file with both User2 and User1′s changes but marked.
文件test.txt包含了用户1和用户2的更改。

<<<<<<< .mine test User2 making conflict======= User1 am making a conflict test>>>>>>> .r3

test.txt.mine is User2′s copy.
文件.txt.mine保存了用户2的内容

test User2 making conflict

test.txt.r2 is the original base copy
文件.txt.r2是未冲突前的内容

test

test.txt.r3 is the copy User1 commited
文件.txt.r3保存了用户1的内容

User1 is making a conflict test

At this point you can choose your favorite merge tools to merge the differences in a file.
这种情况下,你可以选择自己喜欢的对比工具,查看差别。

I suggest merging the differences into test.txt and the do a
我建议和并不同至文件test.txt中,如果如下命令:

C:\workspace\test>svn resolve --accept working test.txt

Resolved conflicted state of 'test.txt'

You can also use any of the other files if you wanted to and just pass resolve –accept a different argument. Here are the valid arguments
当然,你也可以使用其他文件,使用resolve -accept 加其他参数,共6个

实例:
svn resolve mail.sh --accept 'mine-conflict'     #解决冲突。
svn resolved mail.sh                                          #告知svn。4个文件中的其他3个消失


(1)#svn resolve –accept base
Choose the file that was the BASE revision before you updated your working copy. That is, the file that you checked out before you made your latest edits.
使用1.txt.r2作为最后提交的版本

(2)#svn resolve –accept working
Assuming that you've manually handled the conflict resolution, choose the version of the file as it currently stands in your working copy.
使用当前拷贝即test.txt作为最后提交的版本

(3)#svn resolve –accept mine-full
Resolve all conflicted files with copies of the files as they stood immediately before you ran svn update.
使用test.txt.mine作为最后提交的版本

(4)#svn resolve –accept theirs-full
Resolve all conflicted files with copies of the files that were fetched from the server when you ran svn update.
使用test.txt.r3作为最后提交的版本

(5)#svn resolve –accept mine-conflict
冲突的部分以本地修改为准

(6)#svn resolve –accept theirs-conflict
冲突的部分以服务器端修改为准

执行一下:svn resolved test.txt。


Now you are ready to commit.
然后提交

C:\workspace\test>svn ci -m "conflict resolved"
Sending        test.txt
Transmitting file data .
Committed revision 4.


如果您觉得本文的内容对您的学习有所帮助,您可以微信:

  • 大小: 28.9 KB
分享到:
评论
1 楼 long5493 2013-05-29  
步骤很详细,直接就明白了,好帖子

相关推荐

    eclipse SVN学习手册

    总结来说,Eclipse SVN学习手册涵盖了从安装、配置到日常使用的全过程,包括项目分享、版本控制、协同工作、冲突解决、分支和标签管理。熟练掌握这些知识,将使你在软件开发中的版本管理更加得心应手。通过实践和...

    svn中文手册 PowerDesigner中文手册

    Subversion(svn)是一个开源的版本控制系统,它的主要功能包括版本追踪、冲突解决、分支和合并等。svn中文手册将详细解释如何安装、配置和使用这个系统,涵盖基本操作如`svn checkout`(检出)、`svn commit`(提交...

    SVN使用手册大全

    要解决 SVN 仓库中的文件冲突,需要遵循以下步骤: 1. 打开 SVN 客户端,选择要解决的文件。 2. 点击“Resolve”按钮,解决文件冲突。 3. 等待解决完成。 通过本手册,读者可以快速掌握 SVN 的使用方法和技巧,...

    SVN手册 For Subversion 1.7

    - **解决冲突**:当多个用户尝试同时修改同一文件时可能会发生冲突,需要手动解决。 - **提交更改**:确认无误后,使用`svn commit`命令将更改提交到仓库。 ##### 2.5 查看历史记录 - **查看历史细节**:通过`svn ...

    svn操作手册 svn版本控制

    ### SVN操作手册:掌握版本控制的核心技能 在软件开发领域,版本控制是不可或缺的一部分,它帮助团队有效地管理代码变更、追踪历史记录,并协同工作。Subversion(简称SVN)作为一款开源的版本控制系统,自2000年...

    SVN中文帮助手册

    当多个用户修改了同一部分代码时,SVN会识别冲突,并要求用户手动解决。冲突通常出现在合并操作中,需要用户检查冲突文件,决定保留哪个版本的更改。 五、SVN配置与权限控制 1. 配置文件(~/.subversion/config):...

    SVN手册文档 pdf.zip

    2. **冲突解决**:当多人同时修改同一文件时,SVN能识别冲突并提供解决机制。 3. **代码审查**:提交前可以预览和审查更改,提高代码质量。 4. **权限管理**:允许管理员分配访问控制,确保数据安全。 5. **分支策略...

    svn中文手册-版本控制

    3. **强大的冲突解决**:当发生冲突时,SVN提供了解决冲突的工具和策略。 4. **良好的跨平台支持**:SVN可在多种操作系统上运行,包括Windows、Linux和Mac OS X。 5. **丰富的客户端工具**:除了命令行工具,还有...

    SVN管理手册-中文

    该手册会涵盖如何安装TortoiseSVN,创建版本库,检出、提交、更新项目,解决冲突,以及设置权限等内容。TortoiseSVN的特色在于它与Windows资源管理器的集成,使得用户可以在熟悉的环境中进行版本控制操作。 ...

    SVN服务端配置手册

    【SVN服务端配置手册】 SVN(Subversion)是一种版本控制系统,用于管理代码和其他文件的变更历史。在本文中,我们将重点介绍如何配置SVN服务端,包括VisualSVN Server的安装、客户端TortoiseSVN的安装,以及权限...

    myeclipse svn 详细操作手册与版本冲突解决办法

    ### MyEclipse SVN 详细操作手册与版本冲突解决办法 #### MyEclipse SVN 常用功能介绍 MyEclipse 是一款集成了多种插件的Java集成开发环境(IDE),其中包括了Subversion (SVN) 版本控制系统的支持。本文档主要介绍...

    SVN使用手册word打印版

    SVN使用手册word打印版 本手册是关于SVN(Subversion)的使用手册,旨在帮助初学者快速了解SVN的基本原理和使用方法。通过阅读本手册,读者可以学习如何使用SVN实现版本控制,了解基本的菜单操作,并且结合...

    svn操作完全手册

    ### SVN操作完全手册知识点解析 #### 一、SVN检出(Checkout) SVN检出是初次将远程仓库中的文件或目录下载至本地的过程。在本地文件夹右击选择“Checkout”,随后输入拥有访问权限的URL地址及账号密码,使本地...

    SVN服务端+客户端+操作手册

    在这个"SVN服务端+客户端+操作手册"的压缩包中,包含了实现SVN功能所需的三个关键部分: 1. **SVN操作手册3.doc**:这份文档很可能是SVN的用户指南,详细解释了如何使用SVN进行各种操作,包括但不限于以下内容: -...

    SVN 操作手册

    **SVN 操作手册** **一、Export 和 SVN Checkout** `Export` 和 `SVN Checkout` 是 SVN(Subversion)中的两种主要操作,用于获取远程仓库的代码。 1. **Export**:此操作用于下载源代码,但不会创建一个工作副本...

    SVN管理员手册

    FAQ部分通常会包含一些常见问题和解决方案,例如解决权限问题、同步问题、冲突处理、备份恢复策略等。这部分内容会根据实际使用中遇到的问题进行更新和补充,帮助管理员快速解决操作中遇到的困扰。 4. **其他可能...

    SVN使用手册中文版快速入门

    解决冲突(合并别人的修改) 手工合并冲突 拷贝覆盖你的工作文件 下注:使用svn revert 提交你得修改 检验历史 svn log svn diff 比较本地修改 比较工作拷贝和版本库 比较版本库与版本库 svn cat svn list 关于历史...

    svn手册(詳細介绍pdf,客户端/服务器端使用手册)

    这份手册通常会解释SVN的工作原理,包括如何创建仓库,如何克隆仓库,如何提交更改,如何解决冲突,以及如何使用分支和标签等。它还可能包含关于命令行工具的详细教程,以及如何集成SVN到各种开发环境中的指导。 ...

Global site tag (gtag.js) - Google Analytics