|
close
Warning:
- Error with navigation contributor "BrowserModule"
- Failed to sync with repository "(default)": instance.__dict__ not accessible in restricted mode; repository information may be out of date. Look in the Trac log for more information including mitigation strategies.
- Timestamp:
-
Nov 1, 2012, 1:51:41 PM (12 years ago)
- Author:
-
jweil
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v3
|
v4
|
|
39 | 39 | }}} |
40 | 40 | |
41 | | This will apply the changes from the patch file to the current directory. |
| 41 | This will apply the changes from the patch file to the current directory. To apply the patch reversely (i.e. undo the changes), use: |
| 42 | |
| 43 | {{{ |
| 44 | patch -p0 -R < patch.diff |
| 45 | }}} |
42 | 46 | |
43 | 47 | == 3) Reverting a revision == |
… |
… |
|
49 | 53 | patch -p0 -R < patch.diff |
50 | 54 | }}} |
| 55 | |
| 56 | This can then be committed, in order to revert the changes in the repository. To revert local changes in your working copy, you can use: |
| 57 | |
| 58 | {{{ |
| 59 | svn revert |
| 60 | }}} |
|