Changes between Version 27 and Version 28 of CMakeModularizationStatus
- Timestamp:
- Jan 8, 2012, 2:42:09 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CMakeModularizationStatus
v27 v28 34 34 git clone http://github.com/boost-lib/boost modules 35 35 36 # Update all the sub modules36 # Update all the sub-modules 37 37 cd modules 38 38 git submodule update --init # takes a couple of minutes … … 49 49 [http://progit.org/book/ch6-6.html Pro Git book]. For instance, if you intend to customize 50 50 the 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:51 you have to replace the ```git submodule update --init``` by: 52 52 {{{ 53 53 #!sh … … 57 57 vi .git/config 58 58 # 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 minutes59 git submodule update # takes a couple of minutes 60 60 }}} 61 61