1

I have updated to a previous revision and now want to make this revision the new trunk.

No branches or tags - I simply want to replace the trunk with an old revision.

How is this best achieved

David
  • 93
  • 1
  • 4
  • 1
    possible duplicate of [SVN - delete a revision, or make an older revision the head](http://stackoverflow.com/questions/3879938/svn-delete-a-revision-or-make-an-older-revision-the-head) – Carl Norum Apr 11 '11 at 22:02
  • You need to do down merging (merge the trunk with older revision which you want). That is simple and proper way to do it. – Senthil Apr 11 '11 at 22:07

1 Answers1

1

svn merge the HEAD with the revision you want to revert to. read this or else just look at some of the many repeats of this FAQ in the "Related" list to the right -->

Steven D. Majewski
  • 2,127
  • 15
  • 16