Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1800 in orxonox.OLD for orxonox/trunk/documentation


Ignore:
Timestamp:
Apr 12, 2004, 7:12:42 PM (20 years ago)
Author:
patrick
Message:

README: svn finished

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/documentation/README

    r1797 r1800  
    99
    1010
    11 1.Manifesto:
     111.Preface:
    1212----------
    1313Orxonox is a open-source vertical scroller game programed
     
    1616become _the_ open-source vertical scrolle ever.
    1717
     182.Manifesto:
     19------------
     201) Alien is a great film
     212) Guiness is the most delicious beer
    1822
    19 2.Overview:
    20 ---------
    21 1.Manifesto
    22 2.Overview
    23 3.Contributing To The Project
     23to be continoued...
    2424
    2525
    26 3.Contributing To The project:
     263.Overview:
     27---------
     281.Preface
     292.Manifesto
     303.Overview
     313.Contributing To The Project
     324.Howto C++ Programming
     335.Howto SVN
     34
     35
     364.Contributing To The project:
    2737------------------------------
    2838People who want to help us working on orxonox are always
     
    5161
    5262
    53 Howto C++ Programming:
     635.Howto C++ Programming:
    5464------------------------
    5565If you are new to c/c++ programming, this project is probably
     
    6171
    6272
    63 Howto SVN:
    64 ----------
     736.Howto SVN:
     74------------
    6575For a more complete guide about this topic read the documentation
    6676avaiable at subversion.tigris.org.
     
    94104svn add <filename>
    95105and to publish all your changes type
    96 svn commit
    97 which will open a text program to show you a list of changes that will
    98 be committed. Delete the line beginning with '--', this will put all
    99 your changes to the orxonox server.
     106svn commit --message "Corrected number of chees slices."
     107svn commit will send all of your changs to the repository. When you
     108commit a change, you need to supply a log message, describing your
     109change. The message can also be read from a file:
     110svn commit --file logmsg
    100111
    101112If you accidently make a change you like to revert, you just can do this
     
    103114svn revert <filename>
    104115
     116To keep track about the work that is running on the project use the
     117command: svn log. This will show you a bref summary of all changes.
     118
     119
     120Most of the programmer will do their work on a branch. A Branch is
     121a line of development that exists independently of another line, yet
     122still shares a common history. A branch always begins life as a copy
     123of something, and moves on trom there, generating its own history. Later
     124the two versions will merge.
     125
     126If you are working on orxonox you will have your own branch in which you
     127will program, some sort of sand-box. If you finish your work on your
     128topic, it will be revised by us and merged with the trunk
     129
     130
     131
     132
     133#EOF
Note: See TracChangeset for help on using the changeset viewer.