Re: merging
From: Garrett Rooney <rooneg_at_electricjellyfish.net>
Date: 2006-02-17 00:10:33 CET
On 2/16/06, Kevin Aubuchon <Kevin.Aubuchon@reuters.com> wrote:
It depends exactly what you're trying to merge. The command you described:
$ svn merge $REPOS/trunk@REV1 $REPOS/branches/mybranch@REV2 .
Will take the difference between the trunk at REV1 and the branch at
What you probably want is something like this:
$ svn merge -r REV1:REV2 $REPOS/branches/mybranch .
When executed inside a trunk working copy, this will take the
The general idea is that you're giving merge two trees, and telling it
Hope that helps,
-garrett
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.