Changeset 1800 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Apr 12, 2004, 7:12:42 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/documentation/README
r1797 r1800 9 9 10 10 11 1. Manifesto:11 1.Preface: 12 12 ---------- 13 13 Orxonox is a open-source vertical scroller game programed … … 16 16 become _the_ open-source vertical scrolle ever. 17 17 18 2.Manifesto: 19 ------------ 20 1) Alien is a great film 21 2) Guiness is the most delicious beer 18 22 19 2.Overview: 20 --------- 21 1.Manifesto 22 2.Overview 23 3.Contributing To The Project 23 to be continoued... 24 24 25 25 26 3.Contributing To The project: 26 3.Overview: 27 --------- 28 1.Preface 29 2.Manifesto 30 3.Overview 31 3.Contributing To The Project 32 4.Howto C++ Programming 33 5.Howto SVN 34 35 36 4.Contributing To The project: 27 37 ------------------------------ 28 38 People who want to help us working on orxonox are always … … 51 61 52 62 53 Howto C++ Programming:63 5.Howto C++ Programming: 54 64 ------------------------ 55 65 If you are new to c/c++ programming, this project is probably … … 61 71 62 72 63 Howto SVN:64 ---------- 73 6.Howto SVN: 74 ------------ 65 75 For a more complete guide about this topic read the documentation 66 76 avaiable at subversion.tigris.org. … … 94 104 svn add <filename> 95 105 and 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. 106 svn commit --message "Corrected number of chees slices." 107 svn commit will send all of your changs to the repository. When you 108 commit a change, you need to supply a log message, describing your 109 change. The message can also be read from a file: 110 svn commit --file logmsg 100 111 101 112 If you accidently make a change you like to revert, you just can do this … … 103 114 svn revert <filename> 104 115 116 To keep track about the work that is running on the project use the 117 command: svn log. This will show you a bref summary of all changes. 118 119 120 Most of the programmer will do their work on a branch. A Branch is 121 a line of development that exists independently of another line, yet 122 still shares a common history. A branch always begins life as a copy 123 of something, and moves on trom there, generating its own history. Later 124 the two versions will merge. 125 126 If you are working on orxonox you will have your own branch in which you 127 will program, some sort of sand-box. If you finish your work on your 128 topic, 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.