vote up 7 vote down star
1

One of the files in my current head revision got corrupted. I want to make an older revision of that file the head revision as usually people sync to head revsion in my project. How to do that?

flag

80% accept rate

2 Answers

vote up 17 vote down check

You should revert all changes since that old reversion. In principle,

svn merge -rHEAD:oldrev filename
svn commit -m "rolled back to oldrev"

should do. The later revisions are still there, but reverted.

link|flag
That worked...Thanks. – Manoj Nov 7 '08 at 6:54
vote up 4 vote down

You should do a reverse merge.

link|flag
Thanks for the detailed link. – Manoj Nov 7 '08 at 6:59
You're welcome, the SVN Book is always useful :-) – CMS Nov 7 '08 at 7:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.