vote up 2 vote down star
1

If you always sync a feature branch before you merge it back, why do you really have to use the --reintegrate option?

The Subversion book says:

When merging your branch back to the trunk, however, the underlying mathematics is quite different. Your feature branch is now a mishmosh of both duplicated trunk changes and private branch changes, so there's no simple contiguous range of revisions to copy over. By specifying the --reintegrate option, you're asking Subversion to carefully replicate only those changes unique to your branch. (And in fact, it does this by comparing the latest trunk tree with the latest branch tree: the resulting difference is exactly your branch changes!)

So the --reintegrate option only merges the changes that are unique to the feature branch. But if you always sync before merge (which is a recommended practice, in order to deal with any conflicts on the feature branch), then the only changes between the branches are the changes that are unique to the feature branch, right? And if Subversion tries to merge code that is already on the target branch, it will just do nothing, right?

In this blog post, Mark Phippard writes: http://blogs.open.collab.net/svn/2008/07/subversion-merg.html

If we include those synched revisions, then we merge back changes that already exist in trunk. This yields unnecessary and confusing conflicts.

Can somebody give me an example of when dropping reintegrate gives me unnecessary conflicts?

flag

3 Answers

vote up 0 vote down

It is never necessary to use --reintegrate; its a convenience. If your most recent merge from trunk to feature-branch merged all of the changes that occurred in trunk since you branched up to revision rev, then you could use the following command:

svn merge url://trunk@rev url://feature-branch .

Note that this command would be run in the root of an up-to-date working copy of trunk with no outstanding changes to be committed.

Let me expand my answer to more directly answer the question "Can somebody give me an example of when dropping reintegrate gives me unnecessary conflicts?"

Here's what the article means by "If we include those synched revisions, then we merge back changes that already exist in trunk. This yields unnecessary and confusing conflicts."

Including the synched revisions would look like this:

svn merge -r N:HEAD url://feature-branch .

Where . is a clean working copy of trunk and N is the revision that feature-branch was created from trunk. That merge command merges all of the changes committed to the feature-branch since it was branched, including those changes that were merged from trunk after the feature-branch was created. That means that changes already made to trunk would be included in the merge above. You'd be telling svn to apply changes to trunk that actually originated in trunk, which results in conflicts.

link|flag
Well, that's what I don't understand. Why would changes that exist in both the branch and trunk lead to conflicts, if those changes are identical? – Tor Hovland 14 hours ago
vote up 1 vote down

It’s never necessary to use --reintegrate — it’s simply an alias. If you have a working copy of trunk, then

svn merge --reintegrate url://feature-branch workingcopy

is the same as

svn merge url://trunk url://feature-branch workingcopy

You can use whichever one you’re more comfortable with.

link|flag
Hmm. I'm not 100% sure, but I think you're mistaken on this one. At least the svnbook gives quite a different picture of it. svnbook.red-bean.com/nightly/en/… – Jonik Nov 5 at 16:18
@Michael: Are you really sure of that? In the SVN documentation it's pretty clear the behaviour is different, do you mean it detects that automatically from specifying the two URL's? – RedGlyph Nov 5 at 16:21
2  
That’s according to the link specified in the OP. “The new reintegrate option is a shorthanded version of the 2-URL merge ... In other words, reintegrate is just a new syntax plus some safety checks.” I apologize, but I don’t have firsthand experience with this option. – Michael Hackner Nov 5 at 17:48
vote up 0 vote down

I think that Mark means it avoids comparing two files which have been modified, one to reintegrate from the branch and its corresponding file in the trunk, when both have been synchronized (and not just changed locally in their respective branch).

Let's assume we have trunk/a.c and branches/dev/a.c, with trunk/a.c modified at some point and re-integrated in the branch later with a merge. As you pointed out, it's a good practice to do that before putting everything back to the trunk.

So the next step would be that merging back to the trunk, where a.c are "different" on both sides since they have changed at both locations. Without the option there will be an unnecessary comparison, wheras the --reintegrate will make SVN see the change was not just local.

link|flag
Yes, I can understand the "unnecessary comparison". But not the "unnecessary conflict," which is what the documentation is talking about. – Tor Hovland 14 hours ago

Your Answer

Get an OpenID
or

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