Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 32 down vote accepted

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.

share|improve this answer
That worked...Thanks. – Manoj Nov 7 '08 at 6:54

You should do a reverse merge.

share|improve this answer
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

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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