| 111 | |
| 112 | == SVN Part II == |
| 113 | Subversion is not only about 'consuming', you should also be able to commit something. Now copy your TutorialShip.cc file and name it like "TutorialShip_MyName.cc": |
| 114 | {{{ |
| 115 | cd orxonox/src/orxonox/objects |
| 116 | cp TutorialShip.cc TutorialShip_Blofeld.cc |
| 117 | svn add TutorialShip_Blofeld.cc |
| 118 | }}} |
| 119 | It is very important to see that the file is not yet added to the real repository, only to your local one. To upload the changes, write |
| 120 | {{{ |
| 121 | svn ci TutorialShip_Blofeld.cc -m "A message" |
| 122 | }}} |
| 123 | The -m parameter simply specifies a commit message that shows in the log. NEVER forget it. There is no way to edit once commited! |