How to Pull a Git Repository with Sub Modules
In some cases, we might need to add a sub-module to our Git repository. A sub-module is actually a pointer that points to another Git reposi...

// pull all the sub modules for the first time git submodule update --init --recursive // update the sub modules git submodule update --recursive --remote
Post a Comment