Changes between Version 3 and Version 4 of ropp_branches
- Timestamp:
- 2015-10-21T13:51:39Z (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ropp_branches
v3 v4 5 5 '''Creating a branch''' 6 6 7 To create a branch of ropp_srcfrom the trunk use the [http://svnbook.red-bean.com/en/1.0/re07.html svn copy ''SRC DST''] command:7 To create a branch of {{{ropp_src}}} from the trunk use the [http://svnbook.red-bean.com/en/1.0/re07.html svn copy ''SRC DST''] command: 8 8 {{{ 9 svn copy https://svn. grassaf.org/ropp/ropp_src/trunk https://svn.grassaf.org/ropp/ropp_src/branches/dev/Share/<branch_name>9 svn copy https://svn.romsaf.org/ropp/ropp_src/trunk https://svn.romsaf.org/ropp/ropp_src/branches/dev/Share/<branch_name> 10 10 }}} 11 11 where <branch name> is a name of your choice which should reflect what you are working on. This prompts a text editor where you should describe the purpose of the new branch. … … 16 16 }}} 17 17 18 Similar branches may be created to store user versions of ropp_doc or ropp_testas required.18 Similar branches may be created to store user versions of {{{ropp_doc}}} or {{{ropp_test}}} as required. 19 19 20 20 '''Checking out a branch''' … … 22 22 To make developments, the branch needs to be checked out to the local working directory for editing as above, specifying the path name for the required branch as 23 23 {{{ 24 svn checkout https://svn. grassaf.org/ropp/ropp_src/branches/dev/Share/<branch_name>24 svn checkout https://svn.romsaf.org/ropp/ropp_src/branches/dev/Share/<branch_name> ${HOME}/<SVN_working_dir>/<branch name> 25 25 }}} 26 26 … … 51 51 For a branch was created or last updated at revision ''NNNN'', the following command will merge all changes made in trunk since that revision into your branch. 52 52 {{{ 53 svn merge -r NNNN:HEAD https://svn. grassaf.org/ropp/ropp_src/trunk53 svn merge -r NNNN:HEAD https://svn.romsaf.org/ropp/ropp_src/trunk 54 54 }}} 55 55 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. … … 58 58 {{{ 59 59 cd ${HOME}/<SVN_working_dir>/<branch name> 60 svn merge --dry-run -r NNNN:HEAD https://svn. grassaf.org/ropp/ropp_src/trunk60 svn merge --dry-run -r NNNN:HEAD https://svn.romsaf.org/ropp/ropp_src/trunk 61 61 }}} 62 62 … … 68 68 [http://svnbook.red-bean.com/en/1.0/ch04.html#svn-ch-4-sect-1 SVN reference: Branching and Merging] 69 69 70 [https://trac. grassaf.org/ropp/wiki/ropp_repository Back]70 [https://trac.romsaf.org/ropp/wiki/ropp_repository Back]