So, my work environment has precisely one branch with a remote companion on Github. I'm trying to do git pull --rebase
in order to prevent git push
from creating merge commit messages that don't provide new information to others working on this project and just gum up the works. But when I try that, it gives me this:
From https://github.com/our_profile/our_repository
* branch HEAD -> FETCH_HEAD
Cannot rebase onto multiple branches
And the pull aborts. Calling git branch
informs me that I have only one branch on my local machine, so what's going on?