Changes between Version 27 and Version 28 of code/tools/SVN
- Timestamp:
- Aug 22, 2009, 10:32:30 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/tools/SVN
v27 v28 22 22 #!html 23 23 <pre class="wiki" style="white-space:normal;"> 24 svn co https://svn.orxonox.net/ data/trunk data<br/>24 svn co https://svn.orxonox.net/game/data/trunk data<br/> 25 25 svn up<br/> 26 26 svn ci -m "some message"<br/> … … 28 28 svn rm trash-folder<br/> 29 29 svn mv myFile.cc myFile.h myFolder<br/> 30 svn cp https://svn.orxonox.net/ orxonox/trunk https://svn.orxonox.net/orxonox/branches/test<br/>30 svn cp https://svn.orxonox.net/game/code/trunk https://svn.orxonox.net/game/code/branches/test<br/> 31 31 svn resolved somefile.cc<br/> 32 32 svn revert<br/> … … 54 54 This will create a folder orxonox-trunk with the contents of the trunk 55 55 {{{ 56 svn co https://svn.orxonox.net/ orxonox/trunk orxonox-trunk56 svn co https://svn.orxonox.net/game/code/trunk orxonox-trunk 57 57 }}} 58 58 59 59 This will create a folder called test, with the content of the test branch at revision 200. 60 60 {{{ 61 svn co -r 200 https://svn.orxonox.net/ orxonox/branches/test61 svn co -r 200 https://svn.orxonox.net/game/code/branches/test 62 62 }}} 63 63 {{{ … … 158 158 This will create a new branch called test from the current version of the trunk 159 159 {{{ 160 svn cp https://svn.orxonox.net/ orxonox/trunk https://svn.orxonox.net/orxonox/branches/test160 svn cp https://svn.orxonox.net/game/code/trunk https://svn.orxonox.net/game/code/branches/test 161 161 }}} 162 162 {{{