On Mon, 09 Feb 2004 19:37:24 -0700, "Bruce Elrick" <bruce@elrick.ca>
said:
[snip]
> cd ~
> mkdir fixtrunk
> cd fixtrunk
> svn checkout http://localhost/svn/trunk/projectX .
> svn merge -r 20:31 http://localhost/svn/tags/projectX-0.9 .
> svn commit -m \
> "Merge /tags/projectX-0.9 between rev 20 & 31 into /trunk/projectX"
>
[snip]
Just do a reverse merge:
cd ~
mkdir fixtag
cd fixtag
svn checkout http://localhost/svn/tags/projectX-0.9 .
svn merge -r 20:19 http://localhost/svn/tags/projectX-0.9 .
Notice the order of the revisions. We're applying the changes in
reverse, in effect reverting the change. The subsequent commit will
bring back the tag to it's previous state.
Hope that helps !
François
Developer of Java Gui Builder
http://jgb.sourceforge.net/
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Feb 10 04:05:50 2004