Apply SVN patch in reverse or undo patch

Viewed 4662

I modified some files with svn patch <my-patch-file>. How do I reverse this patch without reverting other changes in these files?

1 Answers

Run svn patch --reverse-diff <my-patch-file>. Source

Related