blob: c6808b775f8ad17a98da8a6577f48f652a5f225a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
This repository uses git submodules, so watch out! Before working with this
repository, make sure you do:
git config --global fetch.recurseSubmodules on-demand
git config --global status.submoduleSummary true
git config --global diff.submodule log
To clone this repository, use --recursive:
git clone --recursive ...
To pull, you *must* run two commands:
git pull
git submodule update --init --recursive
To update submodules to the latest master (remember to commit afterwards):
git submodule update --remote [submodule]
|