Re: Very slow merge for Feature Branch
From: Stephen Armstrong <StephenArmstrong_at_nanometrics.ca>
Date: Fri, 01 Feb 2008 09:52:20 -0500 Bicking, David (HHoldings, IT) wrote: We are already using a home-grown approach that I suspect is much like #2. We've been waiting for svn 1.5 to come out, and when it does we'll probably upgrade once it's had a chance to 'settle' in the community for a couple months, and we've looked it over.-----Original Message----- From: Stephen Armstrong [mailto:StephenArmstrong@nanometrics.ca]-----------------< much history removed >------------------- My company switched from Clearcase to SVN a month or two before I started, so the terminology we use comes from there I think. Rebase - merge in all changes that have been done on trunk into your branch (keep your branch up-to-date with changes on trunk) Deliver - merge changes you have done to your branch into trunk Our rebase scripts use a property on the branch called 'lastrebase', so to keep our branch up to date, the merge command is something like: merge http://.../project/trunk@LAST_REBASE http://.../project/trunk@HEAD ./branchWC The script then bumps up the 'lastrebase' property and commits. Our deliver scripts require that you have just rebased your branch before running the deliver script, so the only difference between your branch and the trunk are the changes you made. The deliver script doesn't do a merge based on revision ranges because if it did, the range would include some commits to the branch that were done by the rebase script, and so changes that were done on trunk, and merged into your branch, would be re-merged into trunk. I think this is the reason why suggestion #1 wouldn't work for us, but if I'm mis-understanding it, let me know. Thanks Steve --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org For additional commands, e-mail: users-help@subversion.tigris.org Received on 2008-02-01 15:52:07 CET |
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.