I am trying to learn basics of version control by Eric Sink - http://ericsink.com/vcbe/vcbe_usletter_lo.pdf
I am on page 22 now. I\'ll describe the scenario for you. Two
When you have multiple people changing the same file at once, it's very possible for both to change the same lines. This is what happened to you. Sally changes the same lines Harry was changing. When Harry did svn update
, Subversion detected this, and is asking you what to do.
A word of warning: Sometimes Subversion is only looking for differences in a line between your version and their version, and not meaningful differences. For example, if the indentation of a line was changed, or spacing was different, or if you changed the line endings, Subversion will declare this as a conflict even though it probably isn't. This maybe why the book didn't find this issue, but you did. Doesn't mean you did anything wrong.
What to do? Subversion is giving you a few choices.
<<<<<<< .mine
foobar
=======
fubar
>>>>>>> .rxxx
This is showing you the changes in revision rxxx (what Sally did) look like vs. the changes you have (Harry's changes). Usually, the changes are minor enough that it's pretty easy to figure out what to do.
increment
and Sally called it counter
.As I said, I usually do a postpone, let my update finish, then handle the problems.
Once you fix the problem, you do a svn resolved
on that file to let Subversion know you've fixed the conflict.
There are further choices -- for example, you can launch a third party diff/merge tool to handle the conflict.
For more information, take a look at the Subversion on line manual about resolving merge conflicts.
If you select the s
option it will show you:
(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
Use dc
to view the confilicts then you can decide on the best option to use
The "G" indicates that the file was modified by somebody else, but the modifications that person did were in a different part of the file, so SVN could merge it for you without asking for help.
The "C" indicates that not only was the file modified by somebody else, but their changes were to the same lines you also changed, so SVN doesn't know what to do. Now it's YOUR job to do the merge.
You probably didn't do anything wrong, and the book isn't wrong, they just left out the detail on what the specific changes were, apparently.