Changes between Version 10 and Version 11 of StartModMaint
- Timestamp:
- Dec 9, 2013, 4:35:34 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StartModMaint
v10 v11 40 40 You only have to do that once; your local repo working copy will sit on the branch until it is explicitly changed by a command you give. 41 41 42 Of course, 42 Of course, you don't have to change the directory before every command, and from here on this tutorial will assume the directory has not been changed since the prior example. 43 43 44 If there is any possibility the head of the branch in the public upstream repo has changed, you also will want to:44 If there is any possibility the branch head content in the public upstream repo has changed, you also will want to update content: 45 45 46 46 {{{ … … 48 48 }}} 49 49 50 === Verify Tests Working === 50 == Typical maintenance tasks == 51 52 === Testing === 51 53 52 54 Before making any changes to you library, which we will call {{{mylib}}}, be sure the test suite is working in the modular Boost environment: 53 55 54 56 {{{ 55 cd test57 pushd test 56 58 b2 59 popd 57 60 }}} 58 61 59 == Typical maintenance tasks==62 === Checking status === 60 63 61 64 === Fix a simple bug ===