Changes between Version 6 and Version 7 of Subversion


Ignore:
Timestamp:
09/18/17 12:05:56 (7 years ago)
Author:
dan.lawday
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Subversion

    v6 v7  
    1616
    1717Previously [[LCBRUIT]] ran its own svn service but this has been discontinued, with all files and revisions transferred to the above service.
     18
     19
     20== Example of a SVN process ==
     21For ref Dan's working folder on C drive is "C:\Work\reporting\SSIS_projects"[[BR]]
     22To 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
     26Then do the work[[BR]]
     27When you are ready to commit the changes do the following:
     28
     29''' ''svn status''' '' <- checks what you've done is changed
     30
     31IF YOU'VE ADDED SOMTHING NEW...[[BR]]
     32''' ''svn add filename''' ''
     33
     34IF YOU'VE DELETED SOMTHING...[[BR]]
     35''' ''svn delete filename''' ''
     36
     37Then finish with...[[BR]]
     38''' ''svn commit -m "Ensure you add a message detailing what you've done"''' ''
     39
     40You can also do a status check at the end to ensure all is committed correctly just do[[BR]]
     41''' ''svn status''' ''[[BR]]
     42and you should not get any listing back (nothing is different from the repository)
     43
     44
     45
     46