Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 11 and Version 12 of pps/tutorial_basic


Ignore:
Timestamp:
Sep 30, 2008, 11:11:07 PM (16 years ago)
Author:
rgrieder
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • pps/tutorial_basic

    v11 v12  
    109109=== Final run ===
    110110Compile and run again. You should now see the TutorialShip having thrusters, a trail and blinking lights.
     111
     112== SVN Part II ==
     113Subversion 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{{{
     115cd orxonox/src/orxonox/objects
     116cp TutorialShip.cc TutorialShip_Blofeld.cc
     117svn add TutorialShip_Blofeld.cc
     118}}}
     119It 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{{{
     121svn ci TutorialShip_Blofeld.cc -m "A message"
     122}}}
     123The -m parameter simply specifies a commit message that shows in the log. NEVER forget it. There is no way to edit once commited!