How to Upgrade and Deploy WordPress Install as a Git Submodule?

Solution:

On the remote server try:

git submodule update --init --recursive

This will update all your submodules recursively

You can also issue:

git fetch --tags

This will update your local tags fetching updated list from the central remote repo.