Re: isn't variance adjusted patching horribly dangerous?
From: Tom Lord <lord_at_emf.net>
Date: 2003-04-10 02:18:34 CEST
Philip Martin:
> Tom's example was contrived to give a conflict, I can
You need not. Kfogel's document contains some examples. Mentioning
Another example of where v.a.p. will silently and incorrectly supress
If the trunk has:
foo (a, b);
but the branch:
bar (x, y);
and the trunk changeset makes that `foo (a, b, c)', then v.a.p. can
foo (a, b, c);
(By the "in-range edited line" rules.)
For that matter, with:
foo (a, b);
in the trunk, and
foo (munge(a), b);
in the branch, and a trunk change to:
foo (a, b, c);
v.a.p. can silently give you:
foo (a, b, c);
where
foo (munge(a), b, c);
is what a human forced to resolve a conflict would want.
All that said: I'd surely like a stand-alone diff4 and even a built-in
-t
---------------------------------------------------------------------
|
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.