| | 10 | |
| | 11 | == New Doc == |
| | 12 | It's just a idea of a rewritten doc, so feel free to make something better :) |
| | 13 | |
| | 14 | ===For every Project=== |
| | 15 | |
| | 16 | ====First time==== |
| | 17 | To get the latest source from a project in git @ first time, you always should use |
| | 18 | |
| | 19 | {{{ |
| | 20 | git clone http://shr.bearstech.com/repo/projectName.git |
| | 21 | }}} |
| | 22 | |
| | 23 | in Terminal/Console. |
| | 24 | |
| | 25 | For the several project's, you could visit http://git.shr-project.org . |
| | 26 | |
| | 27 | This command should create a new Folder with the name of the project. |
| | 28 | |
| | 29 | Example: |
| | 30 | {{{ |
| | 31 | git clone http://shr.bearstech.com/repo/opimd-utils.git |
| | 32 | cd opimd-utils/ |
| | 33 | }}} |
| | 34 | |
| | 35 | ====On work==== |
| | 36 | If you already cloned a project from git and if you just want to update it with the new files from git, use |
| | 37 | |
| | 38 | {{{ |
| | 39 | git pull http://shr.bearstech.com/repo/projectName.git |
| | 40 | }}} |
| | 41 | You have to do this in the projectfolder! |
| | 42 | |
| | 43 | For example, on the example in First Time, you have to make |
| | 44 | |
| | 45 | {{{ |
| | 46 | cd opimd-utils |
| | 47 | }}} |
| | 48 | if you're not in the opimd-utils folder. |
| | 49 | |
| | 50 | |
| | 51 | ===Opimd-Utils=== |
| | 52 | First: |
| | 53 | {{{ |
| | 54 | git clone http://shr.bearstech.com/repo/projectName.git |
| | 55 | }}} |
| | 56 | Then you should found it some folders in data/po/ with language-shortnames (as example "de") |
| | 57 | |
| | 58 | //would be continied, lunchbreak :) |