Files
30-seconds-of-code/snippets/pull-all-submodules.md
Angelos Chalaris 1397bb792e Deprecate expertise
2022-12-04 22:23:55 +02:00

22 lines
540 B
Markdown

---
title: Pull all submodules from remote
tags: repository,submodule
author: chalarangelo
cover: blog_images/workspace-with-speaker.jpg
firstSeen: 2021-04-08T20:05:15+03:00
lastUpdated: 2021-04-13T21:10:59+03:00
---
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
```