Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 27 and Version 28 of code/tools/SVN


Ignore:
Timestamp:
Aug 22, 2009, 10:32:30 AM (15 years ago)
Author:
scheusso
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/tools/SVN

    v27 v28  
    2222#!html
    2323<pre class="wiki" style="white-space:normal;">
    24 svn co https://svn.orxonox.net/data/trunk data<br/>
     24svn co https://svn.orxonox.net/game/data/trunk data<br/>
    2525svn up<br/>
    2626svn ci -m "some message"<br/>
     
    2828svn rm trash-folder<br/>
    2929svn mv myFile.cc myFile.h myFolder<br/>
    30 svn cp https://svn.orxonox.net/orxonox/trunk https://svn.orxonox.net/orxonox/branches/test<br/>
     30svn cp https://svn.orxonox.net/game/code/trunk https://svn.orxonox.net/game/code/branches/test<br/>
    3131svn resolved somefile.cc<br/>
    3232svn revert<br/>
     
    5454This will create a folder orxonox-trunk with the contents of the trunk
    5555{{{
    56 svn co https://svn.orxonox.net/orxonox/trunk orxonox-trunk
     56svn co https://svn.orxonox.net/game/code/trunk orxonox-trunk
    5757}}}
    5858
    5959This will create a folder called test, with the content of the test branch at revision 200.
    6060{{{
    61 svn co -r 200 https://svn.orxonox.net/orxonox/branches/test
     61svn co -r 200 https://svn.orxonox.net/game/code/branches/test
    6262}}}
    6363{{{
     
    158158This will create a new branch called test from the current version of the trunk
    159159{{{
    160 svn cp https://svn.orxonox.net/orxonox/trunk https://svn.orxonox.net/orxonox/branches/test
     160svn cp https://svn.orxonox.net/game/code/trunk https://svn.orxonox.net/game/code/branches/test
    161161}}}
    162162{{{