We recently switched to git and are trying to use Submodules to include our Common libraries.

No matter what we do we can not get 'git pull --rebase' to work in the Super or Submodule.

We get:

james:libraries james$ git pull --rebase
Cannot pull with rebase: You have unstaged changes.
Please commit or stash them.

This happens even if we do not have any local changes at all and have a clean directory. Any thoughts on what we might be doing wrong?

Thanks! James

link|improve this question

46% accept rate
What does "git status" of the recent Git version show? May be there are unstaged/uncommitted changes in submodules? – Vi. Feb 27 at 22:31
feedback

1 Answer

After testing here, having changes in a submodule does not stop you from doing pull --rebase on the parent. So either you are doing pull --rebase inside the submodule and you have non stashed changes there, or perhaps you added the submodule with git submodule add url but you did not then commit the submodule addition, which would cause the parent from refusing to pull. Can you post the output of git status ?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.