Changes between Version 13 and Version 14 of Be a CIVL developer


Ignore:
Timestamp:
01/09/17 20:25:51 (9 years ago)
Author:
ziqing
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Be a CIVL developer

    v13 v14  
    2525
    2626* CIVL uses Subversion to manage source code. The CIVL Subversion repository is structured in the typical way.  In particular, the repository contains directories named `trunk`, `branches` and `tags`.
    27 * To create a new branch from the trunk@rev to branches, `svn copy  URL_trunk@rev  target`.
    28 * To keep being updated with the latest trunk, `svn merge URL_trunk  target`.
    29 * To merge your branch back to the trunk, `svn merge source  URL_trunk`.
     27* To create a new branch from the trunk of a specific revision r to branches: `svn copy  svn://vsl.cis.udel.edu/civl/trunk@r   svn://vsl.cis.udel.edu/civl/branches/branch_name`.
     28* To keep being updated with the latest trunk, go to your local branch directory, type:  `svn merge  svn://vsl.cis.udel.edu/civl/trunk  .`.
     29* To merge your branch back to the trunk, go to your local branch directory, type: `svn merge .  svn://vsl.cis.udel.edu/civl/trunk`.