Skip to main content

How can I pull changes to submodules?

08 Aug 2013 - git

You have to go to the submodule and switch to a specific branch to be able to pull changes.

cd subproject-path
git checkout branch-name
git pull

References