Changes between Version 27 and Version 28 of CMakeModularizationStatus


Ignore:
Timestamp:
Jan 8, 2012, 2:42:09 PM (11 years ago)
Author:
Denis Arnaud
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CMakeModularizationStatus

    v27 v28  
    3434git clone http://github.com/boost-lib/boost modules
    3535
    36 # Update all the submodules
     36# Update all the sub-modules
    3737cd modules
    3838git submodule update --init                     # takes a couple of minutes
     
    4949[http://progit.org/book/ch6-6.html Pro Git book]. For instance, if you intend to customize
    5050the sub-module URLs (e.g., replace git:// by http:// when you are behind a corporate firewall),
    51 you have to replace the 'git submodule update --init' by:
     51you have to replace the ```git submodule update --init``` by:
    5252{{{
    5353#!sh
     
    5757vi .git/config
    5858# Fetch all the data from the super-project and check out the appropriate commit listed in it (.gitmodules)
    59 git submodule update --init                     # takes a couple of minutes
     59git submodule update                  # takes a couple of minutes
    6060}}}
    6161