Got a project that is under SVN. No branches (as there was only two of us and I left one person in charge). How can I remove reversions from x onwards?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can do this the easy way or the hard way or the lazy-bones way:
svn mergecommand to restore the build to the previous version. This is fast and quick, and you don’t have to take the repository down. However, all the old history is still there.svnadmin dump. You can use ther$first:$lastto specify the range of revisions you want to dump.svnadmin loadcommand.svn obliteratecommand.