[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Mergeinfo for skipped paths? (was: Re: Tree Conflicts and User Interface)

From: Danil Shopyrin <danil.shopyrin_at_gmail.com>
Date: Mon, 22 Sep 2008 16:04:10 +0400

> Let's assume your target branch looks like this (these other paths
> under trunk help better illustrate what I'm going to propose):
>
> /branch
> /branch/bar.c
> /branch/subdir
>
> We tweak the merge logic to set non-inheritable mergeinfo on the merge
> target describing the merge, and normal mergeinfo on all the target's
> present children, like this:
>
> Properties on 'branch':
> svn:mergeinfo
> /trunk:2,4* <--- Non-inheritable mergeinfo.
> Properties on 'branch/bar.c':
> svn:mergeinfo
> /trunk/bar.c:2,4
> Properties on 'branch/subdir':
> svn:mergeinfo
> /trunk/subdir:2,4
>
> Of course if the skipped path was a deeper subtree and not an
> immediate child of our merge target we would adjust accordingly and
> set the non-inheritable mergeinfo on the skipped path's immediate
> parent and the normal mergeinfo on the skipped path's siblings.
>
> If we commit the above merge and then merge -c3 into branch now foo.c
> is added but it only has mergeinfo for r2-3:
>
> Properties on 'branch':
> svn:mergeinfo
> /trunk:2-3,4*
> Properties on 'branch/foo.c':
> svn:mergeinfo
> /trunk/foo.c:2-3
> Properties on 'branch/bar.c':
> svn:mergeinfo
> /trunk/bar.c:2-4
> Properties on 'branch/subdir':
> svn:mergeinfo
> /trunk/subdir:2-4
>
> Note: In my ad hoc testing foo.c isn't getting r2 in it's mergeinfo,
> it should, but that can be fixed. Assuming that we fix this, if we
> re-merge -r4 to branch then foo.c gets that change and all the
> mergeinfo elides* up to branch and we are left with is this:
>
> Properties on 'branch':
> svn:mergeinfo
> /trunk:2-4
>
> I think this change is fairly simple, we already catch similar cases -
> see libsvn_client/merge.c:get_mergeinfo_paths(). The only difference
> is that we can't identify these paths at the start of the merge but
> must catch them once we realize they are skipped. The
> notification_receiver_baton_t struct keeps track of these already in
> its skipped_paths member so this shouldn't be too hard.
>
> I can crank out a patch that does what I propose in fairly short order
> if this idea solves your problem.
>
> * In the interests of full disclosure, in another thread I am
> proposing the elimination of automatic mergeinfo elision as a fairly
> useless feature...ironically here is a case where it is nice to have
> :-\
>
>> XXX big ugly hack idea: Could we extend the mergeinfo
>> format so that parent directories can record "negative"
>> mergeinfo for direct children which were skipped?
>
> Befitting a "big ugly hack" there's a problem :-) What if, in your
> example, r4 also affected trunk directly (e.g. we added a svn:ignore
> property). It could get a bit ugly if we want a way to record that r4
> affected trunk, but not one of its (currently) non-existent children.

We've discussed this informally at VisualSVN and have found
alternative solution.

Let's assume that our target branch looks like this:
/branch
/branch/bar.c
/branch/subdir

And we have /trunk/foo.c added in r3. Files /trunk/bar.c and
/trunk/foo.c are both changed in r4.

We are merging r4 to the branch. Since r4 contains changes for an
absent file (i.e. foo.c will be skipped) this revision can't be
treated as regularly merged into branch. So the merge should produce
the following mergeinfo in the trunk:

Properties on 'branch':
 svn:mergeinfo
   <empty> //r4 isn't merged completely so we can't claim that it's merged!
Properties on 'branch/bar.c':
 svn:mergeinfo
   /trunk/bar.c:4
Properties on 'branch/subdir':
 svn:mergeinfo
   <empty>

From our point of view, it's far more consistent, because r4 isn't
actually merged. Only part of this revision is merged. It's better
than write that r4 is merged "non-inheritable", because
'non-inheritable' merged revisions make no sense for an average user.

Note that we record that /trunk/bar.c has merged changes from r4. So
there will be no conflicts in the future.

Then we are merging r3 and get the following mergeinfo:
Properties on 'branch':
 svn:mergeinfo
   /trunk:3
Properties on 'branch/bar.c':
 svn:mergeinfo
   /trunk/bar.c:4
Properties on 'branch/foo.c':
 svn:mergeinfo
   <empty>
Properties on 'branch/subdir':
 svn:mergeinfo
   <empty>

Now user can find out that r4 is still not merged completely on branch
and merge it once again. We will get the following mergeinfo:

Properties on 'branch':
 svn:mergeinfo
   /trunk:3,4
Properties on 'branch/bar.c':
 svn:mergeinfo
   <empty>
Properties on 'branch/foo.c':
 svn:mergeinfo
   <empty>
Properties on 'branch/subdir':
 svn:mergeinfo
   <empty>

Note than now we can elide mergeinfo on 'branch/bar.c'.

Advantages:
* user understand that some revisions are merged incompletely;
* less mergeinfo records generated;
* user can easily figure our why r4 mergeinfo is written on /branch/bar.c

Any thoughts?

-- 
With best regards,
Danil Shopyrin
VisualSVN Team
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-09-23 00:01:31 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.