nwaku/docs/contributors/git-submodules.md
Oskar Thorén 39d08ce930
Add basic docs for cluster fleet (#340)
* Add basic docs for cluster fleet

* Add more cluster notes for viewing logs

* Add note on submodules
2021-01-07 18:10:38 +08:00

11 lines
258 B
Markdown

# Submodules
We use Git submodules in the `vendor` directory to track internal Nim
dependencies. We want to update submodules all at once to avoid issues.
```
git submodule foreach --recursive git submodule update --init
git submodule update --remote
```