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

Re: [PATCH] 'svn merge' tree conflict use cases

From: Stefan Sperling <stsp_at_elego.de>
Date: 2007-11-26 12:57:27 CET

On Fri, Nov 23, 2007 at 07:00:11PM +0100, Stephen Butler wrote:
> Hi folks,
>
> As a follow-up to the existing 'svn update' use cases for the tree
> conflicts problem, here's a patch for the notes directory describing
> the corresponding 'svn merge' use cases.
>
> Regards,
> Steve
>
> [[[
>
> Describe simple 'svn merge' use cases for tree conflict handling. See
> issue #2282 for background.
>
> * notes/tree-conflicts/use-cases.txt
> (): Minor tweak to use case 2. Added use cases 4-6.
>
> ]]]

Can a full commiter take a quick look over this and if there
are no obvious issues allow me to commit this to trunk?

I guess the "():" in the log message can be omitted, right?

Thanks.

> Index: notes/tree-conflicts/use-cases.txt
> ===================================================================
> --- notes/tree-conflicts/use-cases.txt (revision 27988)
> +++ notes/tree-conflicts/use-cases.txt (working copy)
> @@ -161,7 +161,7 @@
> \ |update |commit |commit
> \ v |(fails) |
> wcB -- Foo.c' ------------+Bar.c' ------------------------>
> - (edit) -Foo.c ^
> + (edit) -Foo.c' ^
> |
> resolved
>
> @@ -230,3 +230,222 @@
> |
> resolved
>
> +
> +==========
> +USE CASE 4
> +==========
> +
> +Description
> +
> + A file modification is merged onto the source of a file move.
> +
> +Current Behavior
> +
> + Developer A modifies Foo.c and commits it to the repository.
> +
> + Developer B moves Foo.c to Bar.c and commits it to the repository.
> +
> + Developer merges A's new revision into his working copy. The merge
> + will apply A's modification to Foo.c to the Foo.c in B's working
> + copy.
> +
> +Problems With Current Behavior
> +
> + First problem:
> +
> + A's modification of Foo.c will not be merged to B's line of
> + development because the merge skips the absent file.
> +
> + Second problem:
> +
> + B is not explicitly warned about reverting A's modification of Foo.c,
> + except for a "skipped" warning in the output of the merge command,
> + which might not be noticed.
> +
> +Diagram of current behavior
> +
> +
> + (edit)
> + urlA -- Foo.c' ------------------>
> + / (r50) |
> + / |
> + -- Foo.c - |merge -c50
> + \ |(Foo.c skipped)
> + \ |
> + urlB -- +Bar.c ------------|----------------->
> + (move) -Foo.c \ | ^
> + \ | |commit
> + \ v |(no-op)
> + wcB -- Bar.c -- Bar.c ------ -->
> +
> +
> +Desired behavior
> +
> + When user B merges, A's modifications to Foo.c should be merged into
> + Bar.c. Signal a text conflict if necessary.
> +
> + A tree conflict should be signalled to inform B of the new changes
> + to Bar.c, so that B can review the modified Bar.c before committing it.
> +
> +Diagram of desired behaviour
> +
> +
> + (edit)
> + urlA -- Foo.c' ------------------>
> + / (r50) |
> + / |
> + -- Foo.c - |merge -c50
> + \ |(tree conflict)
> + \ |
> + urlB -- +Bar.c -------------|-------------------- Bar.c' -->
> + (move) -Foo.c \ | ^ ^
> + \ | |commit |commit
> + \ v |(fails) |
> + wcB -- Bar.c -- Bar.c' --------------->
> + ^
> + |
> + resolved
> +
> +
> +==========
> +USE CASE 5
> +==========
> +
> +Description
> +
> + A file move is merged onto a modification of the move-source.
> +
> + This is essentially the same as Use Case 4, with the difference that
> + this time, B does the edit and A does the move.
> +
> +Current Behavior
> +
> + Developer A moves Foo.c to Bar.c and commits it to the repository.
> +
> + Developer B modifies Foo.cand commits it to the repository.
> +
> + Developer merges A's new revision into his working copy. The merge
> + will add Bar.c (with the same content as the original Foo.c) and
> + will delete B's Foo.c.
> +
> +Problems With Current Behavior
> +
> + First problem:
> +
> + B's has modified Foo.c in the past. This modification will be lost
> + unless B reviews the history of Foo.c and Bar.c at both URLs and
> + corrects the problem (e.g., via 'svn copy').
> +
> +Diagram of current behavior
> +
> +
> + (move)
> + urlA -- +Bar.c ------------------->
> + / -Foo.c |
> + / (r50) |
> + -- Foo.c - |merge -c50
> + \ |
> + \ |
> + urlB -- Foo.c' -------------|------------ Bar.c --->
> + (edit) \ | ^
> + \ | |commit
> + \ v |
> + wcB -- Foo.c' -- +Bar.c ------>
> + -Foo.c'
> +
> +
> +Desired behavior
> +
> + In B's working copy, the update should add Bar.c and merge the local
> + modifications to Foo.c into Bar.c. Signal a text conflict if necessary.
> +
> + Foo.c should be deleted from B's working copy.
> +
> + A tree conflict should be signaled to inform B that Foo.c has been
> + renamed to Bar.c
> +
> +Diagram of desired behaviour
> +
> +
> + (move)
> + urlA -- +Bar.c ------------------->
> + / -Foo.c |
> + / (r50) |
> + -- Foo.c - |merge -c50
> + \ |(tree conflict)
> + \ |
> + urlB -- Foo.c' -------------|-------------------- Bar.c'-->
> + (edit) \ | ^ ^
> + \ | |commit |commit
> + \ v |(fails) |
> + wcB -- Foo.c' -- Bar.c' --------------->
> + -Foo.c' ^
> + |
> + resolved
> +
> +
> +==========
> +USE CASE 6
> +==========
> +
> +Description
> +
> + A file move is merged onto a conflicting file move.
> +
> +Current Behavior
> +
> + Developer A moves Foo.c to Bar.c and commits it to the repository.
> +
> + Developer B moves Foo.c to Bix.c and commits it to the repository.
> +
> + Developer merges A's new revision into his working copy. The merge
> + will add Bar.c with history in B's working copy.
> +
> +Problems With Current Behavior
> +
> + After B's next commit, the content of the original Foo.c will exist
> + twice in the source tree under two different paths (Bar.c and
> + Bix.c). This may not have been intended.
> +
> +Diagram of current behavior
> +
> +
> + (edit)
> + urlA -- +Bar.c ------------------>
> + / -Foo.c |
> + / (r50) |
> + -- Foo.c - |merge -c50
> + \ |
> + \ |
> + urlB -- +Bix.c ------------|---------------- Bix.c --->
> + (move) -Foo.c \ | ^ Bar.c
> + \ | |commit
> + \ v |
> + wcB -- Bix.c -- Bix.c ---------->
> + +Bar.c
> +
> +
> +Desired behavior
> +
> + A tree conflict should be signaled to inform B of the conflicting
> + rename operation. B can delete either file or commit both.
> +
> +Diagram of desired behaviour
> +
> +
> + (edit)
> + urlA -- +Bar.c ----------------->
> + / -Foo.c |
> + / (r50) |
> + -- Foo.c - |merge -c50
> + \ |(tree conflict)
> + \ |
> + urlB -- +Bix.c ------------|------------------------- Bar.c -->
> + (move) -Foo.c \ | ^ ^ (or Bix.c,
> + \ | |commit |commit or both)
> + \ v |(fails) |
> + wcB -- Bix.c -- Bix.c -------------->
> + +Bar.c ^
> + |
> + resolved
> +

-- 
Stefan Sperling <stsp@elego.de>                 Software Developer
elego Software Solutions GmbH                            HRB 77719
Gustav-Meyer-Allee 25, Gebaeude 12        Tel:  +49 30 23 45 86 96 
13355 Berlin                              Fax:  +49 30 23 45 86 95
http://www.elego.de                 Geschaeftsfuehrer: Olaf Wagner

  • application/pgp-signature attachment: stored
Received on Mon Nov 26 12:58:25 2007

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.