Reputation: 1346
Is it possible to revert svn
code to any particular previous versions. For example consider my code is in the svn
revision of 200. Is it possible to revert this to revision of 100. I know check out option. But i want to know this one. Help me..
Upvotes: 0
Views: 34
Reputation: 2667
If you are using client follow as shown pic. Once done commit the code again.
Upvotes: 1
Reputation: 93080
Use -r in the update command.
svn up -r 100
Then you can commit or not as you want.
Upvotes: 2