I maintain a public branch called "for-maintainer" into which I push changes for up-stream. I'm having issues pulling changes that make it upstream back into my local private repository.
For a single commit that makes it upstream and back into my repo via "git fetch origin" results in a message about my "for-maintainer" branch diverging from the origin.
Now, if I rebase this branch it is identical to the origin, but I cannot push additional changes to the "for-maintainer" branch back to my public repo (non-fast forward) with forcing it.
If I merge origin into my branch then I get duplicate commits I made to the branch that made it upstream.
What am I missing here in maintaining this public branch I communicate with maintainers through?
