Changes between Version 52 and Version 53 of Be a CIVL developer
- Timestamp:
- 02/24/17 13:37:04 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Be a CIVL developer
v52 v53 64 64 svn merge ^/trunk . 65 65 }}} 66 Resolve any conflicts and when you are satisfied with the state of your local copy, commit it as usual. 66 67 Do this regularly (or whenever changes are committed to the trunk) in order to reduce the work of resolving conflicts when you decide to merge your branch back to the trunk. 67 * Lead developers only: to merge a branch back to the trunk, change into the local branch directory and type 68 {{{ 69 svn merge . ^/trunk 70 }}} 71 Resolve conflicts as needed and make sure all tests pass. 72 * Checkout the merge history from trunk to your branch, go to your branch: 68 * To see a summary of the merge history from the trunk to your branch, go into your branch directory and type 73 69 {{{ 74 70 svn mergeinfo ^/trunk 75 71 }}} 72 * Lead developers only: to merge a branch back to the trunk, change into your local copy of the trunk directory and type 73 {{{ 74 svn merge ^/branches/branch_name . 75 }}} 76 Resolve conflicts as needed and make sure all tests pass. Then commit the trunk. At this point the branch may be deleted (`svn remove ^/branches/branch_name`) or it can be kept around if the developer wants to continue to use it. 77
