Re: Problem merging V1.1 to V1.95
From: Ryan Schmidt <subversion-2007a_at_ryandesign.com>
Date: 2007-03-14 09:39:28 CET
On Mar 14, 2007, at 02:58, <Stephane.CLINCKART@ext.ec.europa.eu>
> I have a question about merging.
Ok, let's say that the URL to your project repository $PROJ.
> The problem:
$PROJ/trunk
> I have a branche for Version 1.0 (production)
$PROJ/branches/1.0
> Project goes to Version 2.0… it is now on Version 1.95
This is the trunk, right?
> In my branche I have done some bug correction to Version 1,
So... now we're talking about a 1.1 branch. So, hopefully, you made
svn cp $PROJ/branches/1.0 $PROJ/branches/1.1
(Let's say that created revision number 100.)
Then you checked out a working copy of $PROJ/branches/1.1 and made
> I want now to merge bug correction made in V1.1 to Version 1.95.
What looks strange to me is that you're trying to use local folders
The way you would do it:
Get a working copy of the trunk that has no other changes in it:
svn co $PROJ/trunk
Now merge in revisions 100 (when you created the 1.1 branch) to 110
svn merge -r100:110 $PROJ/branches/1.1
Now test the changes, and when you're sure they work, commit them,
svn ci -m "Merge r100-110 of 1.1 branch into trunk"
-- To reply to the mailing list, please use your mailer's Reply To All function --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org For additional commands, e-mail: users-help@subversion.tigris.orgReceived on Wed Mar 14 09:40:08 2007 |
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.