| 21 | | [[BR]][[BR]][[BR]] |
| | 21 | [[BR]][[BR]] |
| | 22 | = How to use Subversion = |
| | 23 | |
| | 24 | After the checkout you can edit and add files as you with, just work as you do in an normal folder. |
| | 25 | |
| | 26 | Time by time, or after an working session you can run |
| | 27 | {{{ |
| | 28 | svn status |
| | 29 | }}} |
| | 30 | |
| | 31 | And see if there items marked s '''?''' these are new files, you can add them to your local working copy by the command: |
| | 32 | {{{ |
| | 33 | svn add <filename> |
| | 34 | }}} |
| | 35 | |
| | 36 | And item in the 'svn status' list marked as '''M''' is just an modified version. |
| | 37 | |
| | 38 | If you finished your working session or a certain Task/Ticket you should commit your changes by: |
| | 39 | {{{ |
| | 40 | svn commit -m "Fixed Ticket #1234" |
| | 41 | }}} |
| | 42 | |
| | 43 | The parameter '''-m''' is to set a summery of changes. You should use always the #1234 element if you for example fixed an bug from the TRAC Ticket system, TRAC will automatically create links to the Ticket system then. |
| | 44 | [[BR]][[BR]] |