Changes between Version 12 and Version 13 of TryModBoost
- Timestamp:
- Nov 25, 2013, 2:30:42 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TryModBoost
v12 v13 62 62 should run the tests for Boost.system, all of which should pass. 63 63 64 == Submodules == 65 66 You might want to review the [http://git-scm.com/docs/git-submodule git submodule command] at this point, since understanding how to work with submodules is critical to working with the modular Boost repositories. 67 64 68 == Developing == 65 69 66 70 === Checking out a particular branch === 67 71 68 The {{{clone}}} operation above leaves the {{{modular-boost}}} local repository, including the individual libraries, in a zombie-likestate that is not very useful and can result in data loss. So the first thing you want to do is switch to the branch you want to work on:72 The {{{clone}}} operation above leaves the {{{modular-boost}}} local repository, including the individual libraries, in a detached state that is not very useful and can result in data loss. So the first thing you want to do is switch to the branch you want to work on: 69 73 70 74 {{{ 75 git checkout master 76 git submodule update 77 cd libs/my-lib 71 78 git checkout develop 72 79 }}}