Can someone please explain the difference between the following two options of Tortoise SVN on conflicted files:

  • Resolve conflict using 'theirs'.
  • Resolve conflict using 'mine'.

On a side note. Why on earth no one has ever reported this confusing use of terminology as a bug?

link|improve this question

3  
IMHO, this is the most intuitive piece of terminology in the whole SVM merging mess. – Álvaro G. Vicario Oct 25 '10 at 15:04
4  
No offense, but I haven't found this confusing at all. – Bernard Oct 25 '10 at 15:05
1  
The confusion is probably from not understanding the context of "theirs" and "mine" – Igor Pashchuk Oct 13 '11 at 20:44
1  
I arrived here because of this confusion, albeit not in Tortise SVN but from the command line. When updating on the command line, the option is given as "theirs-conflict", which is ambiguous as to whether selecting it will keep it in a state of conflict, or resolve it. – pohl Feb 9 at 14:19
@pohl yes I recently discovered that command line option is worse. – Hasan Khan Feb 9 at 14:21
feedback

3 Answers

up vote 9 down vote accepted

Resolve conflict using 'theirs' means that when you try to check in two files that have conflicting edits, SVN will discard your changes and use the other persons change instead.

Resolve conflict using 'mine' means that you will discard their changes, and use your version of the file instead.

link|improve this answer
1  
Check out the image which explains a lot about this: tortoisesvn.net/docs/release/TortoiseMerge_en/… – Stefan Oct 26 '10 at 14:48
feedback

I agree.

Seems to me that it would be more clear if it said:
- Resolve using repository (theirs)
- Resolve using working copy (mine)

link|improve this answer
feedback

I want to add whole list for further referance

(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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.