We\'re using git submodules to manage a couple of large projects that have dependencies on many other libraries we\'ve developed. Each library is a separate repo brought int
Clone and Init Submodule
git clone git@github.com:speedovation/kiwi-resources.git resources
git submodule init
During development just pull and update submodule
git pull --recurse-submodules && git submodule update --recursive
git submodule foreach git pull origin master
git submodule update --remote --merge
note: last two commands have same behaviour