blob: 905367b7ece5a3723e01b5c96f1ac7e706f1f572 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Submodules
## Update
```sh
git submodule update --recursive --remote
```
> Update the registered submodules to match what the superproject
> expects by cloning missing submodules, fetching missing commits in
> submodules and updating the working tree of the submodules.
|