Answers for "how to update git submodules"

13

Update submodules

git submodule update --init --recursive
Posted by: Guest on May-14-2020
1

git submodule update

#https://chrisjean.com/git-submodules-adding-using-removing-and-updating/

#it checks out the specific version of the project and respective submodule recursively (if applicable)
#but not within a branch.
git submodule update --init --recursive

#or
git submodule init && git submodule update --recursive
Posted by: Guest on January-25-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language