Changes between Version 1 and Version 2 of HowtoPatches
- Timestamp:
- Jul 13, 2012, 3:02:38 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowtoPatches
v1 v2 40 40 41 41 This will apply the changes from the patch file to the current directory. 42 43 == 3) Reverting a particular revision == 44 45 A particular revision can be reverted by producing a diff of that revision and appling it reversely ("-R"): 46 47 {{{ 48 svn diff -c1234 > patch.diff 49 patch -p0 -R < patch.diff 50 }}}