The Veilid Repo is hosted on Gitlab.
git clone https://gitlab.com/veilid/veilid.git
Submodules are no longer required as of 0.2.2!!
Old Method
git clone --recurse-submodules https://gitlab.com/veilid/veilid.git
If you’re a goof like me and already cloned it incorrectly, grab the submodules like this:
git submodule update --init
submodule
- working with git submodulesupdate
- pull the most recent code for all registered submodules--init
- callsubmodule init
for all not-yet-initted submodules (registers them)