| 18 | |
| 19 | |
| 20 | == Example of a SVN process == |
| 21 | For ref Dan's working folder on C drive is "C:\Work\reporting\SSIS_projects"[[BR]] |
| 22 | To start with ensure you are working on the most up to date version on your PC before you do the work. |
| 23 | |
| 24 | ''' ''svn update''' '' |
| 25 | |
| 26 | Then do the work[[BR]] |
| 27 | When you are ready to commit the changes do the following: |
| 28 | |
| 29 | ''' ''svn status''' '' <- checks what you've done is changed |
| 30 | |
| 31 | IF YOU'VE ADDED SOMTHING NEW...[[BR]] |
| 32 | ''' ''svn add filename''' '' |
| 33 | |
| 34 | IF YOU'VE DELETED SOMTHING...[[BR]] |
| 35 | ''' ''svn delete filename''' '' |
| 36 | |
| 37 | Then finish with...[[BR]] |
| 38 | ''' ''svn commit -m "Ensure you add a message detailing what you've done"''' '' |
| 39 | |
| 40 | You can also do a status check at the end to ensure all is committed correctly just do[[BR]] |
| 41 | ''' ''svn status''' ''[[BR]] |
| 42 | and you should not get any listing back (nothing is different from the repository) |
| 43 | |
| 44 | |
| 45 | |
| 46 | |