Changes between Version 9 and Version 10 of MakingRelease
- Timestamp:
- 09/10/08 16:24:40 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MakingRelease
v9 v10 37 37 == Bugfix Changesets == 38 38 39 - Do the bugfix on the top of the common ancestor changeset of all branches where the bug appears (e.g. on the top of '''1.0-base'''). 39 - Do the bugfix on the top of the common ancestor changeset of all branches where the bug appears. This changeset can be found with the {{{debuganchestor}}} command like this. 40 {{{ 41 hg debugancestor default 1.0 42 }}} 40 43 - Then merge them individually to all branches where it applies. 44 - '''Important:''' Update to the branch head first, then merge to the bugfix changeset, otherwise the the merge commit will not belong to the branch. 45 {{{ 46 hg up -C 1.0 47 hg merge -r 1234 48 hg ci -m 'Merge to 1.0' 49 }}} 41 50 42 51 == Bugfix Releases ==