Re: How to check out a project based on commit time rather than rev?
From: Ryan Schmidt <subversion-2018_at_ryandesign.com>
Date: Fri, 18 May 2018 19:05:50 -0500
On May 18, 2018, at 17:01, Bo Berglund wrote:
> So now I know what has happened and I found the revision numbers for
When merging:
"-c 500" is a shorthand synonym for "-r 499:500".
"-r 499:500" means "the set of steps to turn r499 into r500".
You'll use this if you want to repeat what you did in a revision, for example to make the same change on another branch.
If instead you want to undo a change you already committed, then you'll want to merge in the reverse order: "-r 500:499" to turn 500 back into 499, or using the shorthand: "-c -500".
If you want to do two revisions at once, just extend the range, e.g. "-r 498:500" is the steps to turn r498 into r500.
So if you want to undo what you did in revisions 4309 and 4310, you would merge "-r 4310:4308".
http://svnbook.red-bean.com/en/1.7/svn.branchmerge.basicmerging.html#svn.branchmerge.basicmerging.undo
|
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.