|
From: Bart V. A. <bar...@gm...> - 2009-06-02 13:02:21
|
On Tue, Jun 2, 2009 at 8:54 AM, <sv...@va...> wrote: > Author: njn > Date: 2009-06-02 07:54:57 +0100 (Tue, 02 Jun 2009) > New Revision: 10204 > > Log: > Back out r10197--r10200 and r10202--r10203. I'm going to put them, and > further, related changes, on a branch instead. > > > > Modified: > trunk/Makefile.flags.am > trunk/coregrind/Makefile.am > trunk/drd/tests/Makefile.am > > > Modified: trunk/Makefile.flags.am [ ... ] Hello Nicholas, Did you delete the aforementioned revisions from the repository ? Did you know that you can also back out changes using a command like svn -r10203:10202 (highest revision number first) ? I prefer the latter because it preserves the entire modification history. A common way to move changes between revisions r1 and r2 from the trunk to a branch when using Subversion is to remove these from the trunk first (by merging r2:r1, which generates revision r3), then creating a branch, and then merging r3:r2 on the branch. The last command reverts the undelete, and hence restores r1. Bart. |