I have a projectx which includes a git submodule
/projectx/foo/bar/submodule
The submodule repository is itself a git-svn repo which tracks an svn repository.
In the standalone submodule repo, I've pulled in some new updates:
git svn fetch
and I see some revisions come in. So I run:
git svn rebase master
and when I call:
git status
It all looks fine. So in the root of my projectx I run:
git submodule update
and nothing happens. What am I doing wrong? I've definitely run:
git submodule add
git submodule init
on the submodule, and when I run:
git submodule status
I see the hash for its status.
So why does git submodule update
not cause any update to happen?