views:

35

answers:

2

When creating a patch with the "patch" tool or with the built in "patch"-functionality in svn and then applying it to a source tree, is there any way to easily step back from the applied patch to the previous version?

+1  A: 

svn revert? You can revert to the previous revision (before the patch was applied).

Vicky
+1 as this is what I would recommend as the default strategy
Wayne
+1  A: 

Apply the patch again in reverse (for example patch -R switch).

Juraj