vote up 0 vote down star

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?

flag
Please post example session. Merge should fast-forward... if you didn't rewrite commits, and if upstream maintainer didn't cherry-pick your commit. – Jakub NarÄ™bski Oct 31 at 9:36

1 Answer

vote up 1 vote down

If it's non fast-forward, it's not identical. The duplicates are commits that look like yours, but aren't the same as yours.

If you rebase your branch over origin, it will fast-forward.

git rebase remote_name/upstream_branch_name
link|flag

Your Answer

Get an OpenID
or

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