Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 11 and Version 12 of code/tools/SVN


Ignore:
Timestamp:
May 2, 2008, 1:39:27 AM (16 years ago)
Author:
scheusso
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/tools/SVN

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