| | 141 | |
| | 142 | |
| | 143 | === merge === |
| | 144 | |
| | 145 | For those of you, who are courageous enough to merge two branches, or adequate, here's a little description about merge: |
| | 146 | The merge command takes the difference between two repositories (or revisions) and inserts the diff into a working copy. |
| | 147 | |
| | 148 | You can for example use it like that: |
| | 149 | {{{ |
| | 150 | svn merge <remote-trunk> -rOLDREVISION:NEWREVISION <destination> |
| | 151 | }}} |
| | 152 | |
| | 153 | |
| | 154 | It is important to understand, that this command acts like a diff-chat combination. You could also type: |
| | 155 | {{{ |
| | 156 | svn diff <remote-trunk> -rOLDREVISION:NEWREVISION > patch-file && cd <destination> && patch -p0 < <path-to-patch-file> |
| | 157 | }}} |