Changes between Version 3 and Version 4 of ropp_repository


Ignore:
Timestamp:
2008-03-13T11:01:12Z (16 years ago)
Author:
Huw Lewis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ropp_repository

    v3 v4  
    7373{{{
    7474cd ${HOME}/<SVN_working_dir>/<branch name>
    75 svn merge https://svn.grassaf.org/ropp/ropp_src/trunk
     75}}}
     76For a branch was created at revision ''NNNN'', the following command will merge all changes made in trunk since the branch was created into your branch.
     77{{{
     78svn merge -r NNNN:HEAD https://svn.grassaf.org/ropp/ropp_src/trunk
    7679}}}
    7780When you do this, you should see the list of updates that have been made to the trunk since you last brought in any changes (or since you branched). Note that this only results in changes to your working copy so you might want to commit them to the repository.
     
    8083{{{
    8184cd ${HOME}/<SVN_working_dir>/<branch name>
    82 svn merge --dry-run https://svn.grassaf.org/ropp/ropp_src/trunk
     85svn merge --dry-run -r NNNN:HEAD https://svn.grassaf.org/ropp/ropp_src/trunk
    8386}}}
     87
     88The merge command can be used separately on subdirectories and files within a branch as required.
    8489
    8590Further information on branches are available in
    8691[http://svnbook.red-bean.com/en/1.0/ch04.html#svn-ch-4-sect-1 SVN reference: Branching and Merging]
     92
     93[https://trac.grassaf/org/ropp/wiki/ropp_branches Instructions for working with branches]