Changes between Version 3 and Version 4 of WikiStart


Ignore:
Timestamp:
10/28/2009 11:29:38 AM (4 years ago)
Author:
xuedi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v3 v4  
    1919 
    2020 
    21 [[BR]][[BR]][[BR]] 
     21[[BR]][[BR]] 
     22= How to use Subversion = 
     23 
     24After the checkout you can edit and add files as you with, just work as you do in an normal folder. 
     25 
     26Time by time, or after an working session you can run 
     27{{{ 
     28svn status 
     29}}} 
     30 
     31And see if there items marked s '''?''' these are new files, you can add them to your local working copy by the command: 
     32{{{ 
     33svn add <filename> 
     34}}} 
     35 
     36And item in the 'svn status' list marked as '''M''' is just an modified version.  
     37 
     38If you finished your working session or a certain Task/Ticket you should commit your changes by: 
     39{{{ 
     40svn commit -m "Fixed Ticket #1234" 
     41}}} 
     42 
     43The 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]] 
    2245 
    2346