Changes between Version 3 and Version 4 of StartModMaint
- Timestamp:
- Dec 3, 2013, 3:02:15 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StartModMaint
v3 v4 11 11 * A (free) [http://www.github.com GitHub] account. See [wiki:StartGitHub Getting Started with GitHub.] 12 12 * 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]. 14 14 * {{{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. 15 15 16 16 == Verify Tests Working == 17 17 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: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: 19 19 20 20 {{{ 21 cd /modular-boost/libs/mylib21 cd modular-boost/libs/mylib 22 22 git checkout develop 23 git pull 23 24 cd test 24 25 b2 25 26 }}} 26 27 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 29 28 == Fix a simple bug == 30 29 31 These commands could be used for any Git project, modular or not, so hopefully you are already familiar with them:30 These commands could be used for any Git project, modular or not, so hopefully you are already somewhat familiar with them: 32 31 33 32 {{{ … … 35 34 git checkout develop 36 35 # make edits 37 # test 36 # test as above 38 37 git commit -a -m "my bug fix" 39 git push origin develop38 git push 40 39 }}} 41 40