Changes between Version 3 and Version 4 of ropp_repository
- Timestamp:
- 2008-03-13T11:01:12Z (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ropp_repository
v3 v4 73 73 {{{ 74 74 cd ${HOME}/<SVN_working_dir>/<branch name> 75 svn merge https://svn.grassaf.org/ropp/ropp_src/trunk 75 }}} 76 For 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 {{{ 78 svn merge -r NNNN:HEAD https://svn.grassaf.org/ropp/ropp_src/trunk 76 79 }}} 77 80 When 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. … … 80 83 {{{ 81 84 cd ${HOME}/<SVN_working_dir>/<branch name> 82 svn merge --dry-run https://svn.grassaf.org/ropp/ropp_src/trunk85 svn merge --dry-run -r NNNN:HEAD https://svn.grassaf.org/ropp/ropp_src/trunk 83 86 }}} 87 88 The merge command can be used separately on subdirectories and files within a branch as required. 84 89 85 90 Further information on branches are available in 86 91 [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]