Changes between Version 7 and Version 8 of DRM4G/Development
- Timestamp:
- Dec 7, 2016 3:47:08 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DRM4G/Development
v7 v8 142 142 143 143 When finished, the branch __has to be merged back into the '''develop''' branch__. After it can be deleted. 144 * To keep the history of the branches created, the merges to the '''develop''' branch, will always be done with the no fast-forward option "'''--no-ff'''".144 * To keep the log history of the branches created, the merges to the '''develop''' branch, will always be done with the no fast-forward option "'''--no-ff'''". 145 145 146 146 {{{#!comment … … 156 156 }}} 157 157 158 159 160 158 To make the log more readable, in the cases in which a lot of small commits were made in the '''feature branch''', it may be advisable to ''rebase'' to merge some commits before doing the merge into '''develop''': 159 160 {{{#!sh 161 git rebase -i <hash_code> 162 }}} 163 164 {{{#!comment 165 Should it be explained how the rebase works? 166 }}} 167 168 [[br]] 161 169 === Getting ready for a release === 162 170