Answers for "Fetch submodules recursively"

1

git clone recursive

# When cloning repo ...
git clone --recurse-submodules -j8 https://git.example.com/repo.git

# ... or for existing already cloned repo
git submodule update --init --recursive
Posted by: Guest on November-25-2020
6

git clone submodule

git clone --recurse-submodules
Posted by: Guest on November-30-2019
0

git checkout branch and update submodules

git checkout --recurse-submodule
Posted by: Guest on July-21-2020
0

Fetch submodules recursively

#! Fetch and update submodules into an existing project
git submodule update --init --recursive
Posted by: Guest on October-19-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language