Changes between Version 2 and Version 3 of gbgp_branches
- Timestamp:
- 2016-09-21T13:56:50Z (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
gbgp_branches
v2 v3 7 7 To create a branch of {{{gbgp_src}}} from the trunk use the [http://svnbook.red-bean.com/en/1.7/svn.ref.svn.c.copy.html svn copy ''SRC DST''] command: 8 8 {{{ 9 svn copy https://svn.romsaf.org/gbgp/gbgp_src/trunk https://svn.romsaf.org/gbgp/gbgp_src/branches/ dev/Share/<branch_name>9 svn copy https://svn.romsaf.org/gbgp/gbgp_src/trunk https://svn.romsaf.org/gbgp/gbgp_src/branches/<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. … … 22 22 To make developments, the branch needs to be checked out to the local working SVN directory for editing as above, specifying the path name for the required branch, e.g.: 23 23 {{{ 24 svn checkout https://svn.romsaf.org/gbgp/gbgp_src/branches/ dev/Share/<branch_name> ${HOME}/<SVN_working_dir>/<branch_name>24 svn checkout https://svn.romsaf.org/gbgp/gbgp_src/branches/<branch_name> ${HOME}/<SVN_working_dir>/<branch_name> 25 25 }}} 26 26