Changes between Version 51 and Version 52 of StartModMaint
- Timestamp:
- Dec 26, 2013, 10:42:54 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StartModMaint
v51 v52 209 209 === Lightweight library release === 210 210 211 Small, simple libraries and simple releases just merge {{{develop}}} into {{{master}}}, tag {{{master}}}, and declare victory.211 Small, simple libraries and simple releases just merge the development branch, such as {{{develop}}}, into {{{master}}}, and test like this: 212 212 213 213 {{{ 214 214 git checkout master 215 215 git merge --no-ff develop 216 git tag -a 1.56.1 216 pushd test 217 b2 218 popd 219 }}} 220 221 If there are any test failures, correct the problem, retest, and commit the fixes before proceeding with the release! 222 223 if there are no test failures, tag {{{master}}}, push {{{master}}}, and declare victory. 224 225 {{{ 226 git tag -a 1.2 227 git push 217 228 }}} 218 229