views:

177

answers:

3

I made some changes to a project that I need to take out. The easiest way is to rollback to the project 3 days ago and start from there.

How do I make that revision the new head of the project in ToutoiseSVN?

+3  A: 

To revert to a previous revision you do not actually revert to that revision - you create a new changeset, which - when committed - will revert your source code to look like that revision.

You can do it by marking a couple of commits in the log, right click, and select "revert changes from this revision".

And don't worry, nothing will really happen until you commit that changeset.

mookid8000
What he said. The trick is, as mentioned, **"revert changes from this revision"**.. which gets really confusing since "revert to this revision" is an option.
Matt Hinze
+2  A: 

Take a look here: How to Rollback a SVN Repository to a Previous Revision.

Alan Haggai Alavi
A: 

As for most tasks, there are several options on how you can achieve this. The TortoiseSVN docs explain them here.

Stefan