Code: Select all
git clone <Project URL>
To also clone the code for these projects dependencies the following additional commands need to be run:
Code: Select all
cd <The project folder created by the clone command>
git submodule init
git submodule update
Code: Select all
git clone <Project URL> --recursive
To clone a specific release, add the tag name to the command line:
Code: Select all
git clone <Project URL> --recursive --branch <tag_name>