而不是分别运行
submodule-init.sh
git submodule init
git submodule update你可以直接
submodule-update-init.sh
git submodule update --init在许多情况下,你还想递归地 git submodule update,使用:
submodule-update-recursive.sh
git submodule update --init --recursive而不是分别运行
git submodule init
git submodule update你可以直接
git submodule update --init在许多情况下,你还想递归地 git submodule update,使用:
git submodule update --init --recursive