Changes between Version 3 and Version 4 of StartModMaint


Ignore:
Timestamp:
Dec 3, 2013, 3:02:15 PM (9 years ago)
Author:
Beman Dawes
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • StartModMaint

    v3 v4  
    1111 * A (free) [http://www.github.com GitHub] account. See [wiki:StartGitHub Getting Started with GitHub.]
    1212 * A compiler and development environment installed and working smoothly.
    13  * Modular Boost installed as described in [wiki:TryModBoost Getting Started with Modular Boost]. Be sure to run the suggested libs/system/tests tests to be sure your installation and compiler are working together.
     13 * Modular Boost installed as described in [wiki:TryModBoost Getting Started with Modular Boost].
    1414 * {{{b2}}} in your path. That allows most of the command line examples given here to work as shown on both Windows and POSIX-like systems.
    1515
    1616== Verify Tests Working ==
    1717
    18 Before making any changes to you library, which we will call "mylib", be sure the test suite is working in the modular Boost environment:
     18Before making any changes to you library, which we will call {{{mylib}}}, be sure the test suite is working in the modular Boost environment:
    1919
    2020{{{
    21 cd /modular-boost/libs/mylib
     21cd modular-boost/libs/mylib
    2222git checkout develop
     23git pull
    2324cd test
    2425b2
    2526}}}
    2627
    27 The results should be the same as trunk tests before the conversion. If they aren't, you probably want to resolved that before proceeding.
    28 
    2928== Fix a simple bug ==
    3029
    31 These commands could be used for any Git project, modular or not, so hopefully you are already familiar with them:
     30These commands could be used for any Git project, modular or not, so hopefully you are already somewhat familiar with them:
    3231
    3332{{{
     
    3534git checkout develop
    3635# make edits
    37 # test
     36# test as above
    3837git commit -a -m "my bug fix"
    39 git push origin develop
     38git push
    4039}}}
    4140