Files
collection/docs/git.md
2024-10-02 15:35:19 +02:00

19 lines
309 B
Markdown

# summary on some steps in the git workflow
## Table of contents
- [git submodule](#git-submodule)
## git submodule
```bash
# do it manually
git submodule init
git submodule update
# do it all at once
git clone --recurse-submodules
# if repo is already cloned
git submodule update --init --recursive
```