Answers for "clone submodules after clone"

6

git clone submodule

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

git clone submodules

# This will clone a repo with all submodules included
git clone --recurse-submodules
Posted by: Guest on February-03-2021
0

clone submodules after clone

# If you cloned without submodules, run this to update all submodules
git submodule update --init
Posted by: Guest on June-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language