Changes between Version 12 and Version 13 of TryModBoost


Ignore:
Timestamp:
Nov 25, 2013, 2:30:42 PM (9 years ago)
Author:
Beman Dawes
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TryModBoost

    v12 v13  
    6262should run the tests for Boost.system, all of which should pass.
    6363
     64== Submodules ==
     65
     66You 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
    6468== Developing ==
    6569
    6670=== Checking out a particular branch ===
    6771
    68 The {{{clone}}} operation above leaves the {{{modular-boost}}} local repository, including the individual libraries, in a zombie-like 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:
     72The {{{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:
    6973
    7074{{{
     75git checkout master
     76git submodule update
     77cd libs/my-lib
    7178git checkout develop
    7279}}}