Changes between Version 2 and Version 3 of ropp_repository
- Timestamp:
- 2008-03-13T10:17:12Z (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ropp_repository
v2 v3 53 53 54 54 Code developments are then made and logged within a branch as normal. 55 To view the local changes made to a branch, use the [http://svnbook.red-bean.com/en/1.0/re 04.html svn status] command.55 To view the local changes made to a branch, use the [http://svnbook.red-bean.com/en/1.0/re26.html svn status] command. 56 56 57 57 … … 70 70 At some stage it may be necessary to update the trunk with latest developments while a user is still working in a particular branch. Users will be notified of any changes to trunk. 71 71 72 In order to keep a branch up to date with the latest version of the trunk while you are working on your branch, you may want to bring in the changes that have been made to the main trunk. This can be done using the ''svn merge''command. You must first change directory to your branch's working copy: e.g.72 In order to keep a branch up to date with the latest version of the trunk while you are working on your branch, you may want to bring in the changes that have been made to the main trunk. This can be done using the [http://svnbook.red-bean.com/en/1.0/re16.html svn merge] command. You must first change directory to your branch's working copy: e.g. 73 73 {{{ 74 cd ${HOME}/ FCM/<branch name>74 cd ${HOME}/<SVN_working_dir>/<branch name> 75 75 svn merge https://svn.grassaf.org/ropp/ropp_src/trunk 76 76 }}} … … 79 79 It is useful to preview the files which will be changed on performing a merge before going ahead using: 80 80 {{{ 81 cd ${HOME}/ FCM/<branch name>81 cd ${HOME}/<SVN_working_dir>/<branch name> 82 82 svn merge --dry-run https://svn.grassaf.org/ropp/ropp_src/trunk 83 83 }}}