Changes between Version 1 and Version 2 of StartModMaint


Ignore:
Timestamp:
Oct 28, 2013, 12:26:22 PM (9 years ago)
Author:
Beman Dawes
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • StartModMaint

    v1 v2  
    3333== Fix a simple bug ==
    3434
    35 These commands are the same for any Git project, modular or not, so hopefully you are already familiar with them:
     35These commands could be used for any Git project, modular or not, so hopefully you are already familiar with them:
    3636
    3737{{{
    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'
     38cd /modular-boost/libs/mylib
     39git checkout develop
     40# make edits
     41# test
     42git commit -a -m "my bug fix"
    4343git push origin develop
    4444}}}
    4545
    46 Simple bugs are usually fixed on the {{{develop}}} branch - there is no need to first create a bug-fix branch.
     46Simple bugs are usually fixed on the {{{develop}}} branch - there is usually no need to first create a bug-fix branch.
    4747