Purpose of the mine-full and theirs-full commands

Svn

Svn Problem Overview


According to the docs:

> (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)

I don't understand the difference between the *-conflict and *-full commands. It seems like it would get you the same results.


More: See this thread for a more detailed response to this question.

Svn Solutions


Solution 1 - Svn

The 'conflicts' version will use the specified copy for the conflicts only, letting the normal merge work for any other changes.

Using the 'full' version will use the entire file as specified, disregarding the results of the merge.

http://svnbook.red-bean.com/en/1.8/svn.tour.cycle.html#svn.tour.cycle.resolve

Solution 2 - Svn

mine-conflict will use your code in every conflict situation, but still do regular merging in all other situations.

mine-full will use your entire file, throwing away all changes in theirs.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionHua-YingView Question on Stackoverflow
Solution 1 - SvnrjohnstonView Answer on Stackoverflow
Solution 2 - SvndigitaljoelView Answer on Stackoverflow