Changes between Version 13 and Version 14 of TryModBoost
- Timestamp:
- Nov 25, 2013, 5:45:31 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TryModBoost
v13 v14 70 70 === Checking out a particular branch === 71 71 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:72 The {{{clone}}} operation above leaves the individual libraries in the {{{modular-boost}}} local repository 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 any library you want to modify to the branch you want to work on. For example, if you want to do some maintenance on the {{{develop}} branch of my-lib, do this: 73 73 74 74 {{{ 75 git checkout master76 git submodule update77 75 cd libs/my-lib 78 76 git checkout develop