18 lines
406 B
Markdown
18 lines
406 B
Markdown
---
|
|
title: Pull all submodules from remote
|
|
tags: repository,submodule,advanced
|
|
---
|
|
|
|
Pulls all submodules from their respective remotes.
|
|
|
|
- Use `git submodule update --recursive --remote` to pull all submodules from their respective remotes.
|
|
|
|
```shell
|
|
git submodule update --recursive --remote
|
|
```
|
|
|
|
```shell
|
|
git submodule update --recursive --remote
|
|
# Pulls all submodules from their respective remotes
|
|
```
|