Anbu.Sankar
Anbu.Sankar

Reputation: 1346

Reverting svn code to particular previous version

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

Answers (2)

Rupesh
Rupesh

Reputation: 2667

If you are using client follow as shown pic. Once done commit the code again.

access update to revision

Upvotes: 1

Petar Ivanov
Petar Ivanov

Reputation: 93080

Use -r in the update command.

svn up -r 100

Then you can commit or not as you want.

Upvotes: 2

Related Questions