Changes between Version 1 and Version 2 of StartModMaint
- Timestamp:
- Oct 28, 2013, 12:26:22 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StartModMaint
v1 v2 33 33 == Fix a simple bug == 34 34 35 These commands are the samefor any Git project, modular or not, so hopefully you are already familiar with them:35 These commands could be used for any Git project, modular or not, so hopefully you are already familiar with them: 36 36 37 37 {{{ 38 cd /modular-boost/libs/mylib ''# if needed''39 git checkout develop ''# if needed''40 ''# make edits'' 41 ''# test'' 42 git commit - m 'my bug fix'38 cd /modular-boost/libs/mylib 39 git checkout develop 40 # make edits 41 # test 42 git commit -a -m "my bug fix" 43 43 git push origin develop 44 44 }}} 45 45 46 Simple bugs are usually fixed on the {{{develop}}} branch - there is no need to first create a bug-fix branch.46 Simple bugs are usually fixed on the {{{develop}}} branch - there is usually no need to first create a bug-fix branch. 47 47