Background:

I have a feature branch A that is one commit ahead of my development branch:

3   (develop, origin/develop)
| 2 (A, origin/A) some feature branch commit
|/
1   some commit

Then I rebase A on develop (git checkout A, git rebase develop), so I get:

2'  (A) some feature branch commit
|
3   (develop, origin/develop)
| 2 (origin/A) some feature branch commit
|/
1   some commit

Now I can no longer push A to origin as Git will reject a non-fast forward commit. It tells me to first pull the remote changes.

When I do so and then push, I end up with the following history:

4   (A, origin/A) merged origin/A into A
|\
2'| some feature branch commit
| |
3 | (develop, origin/develop)
| 2 (origin/A) some feature branch commit
|/
1   some commit

I end up with a history containing the 2 commit twice -- technically different commits although they do the same thing.

Questions

  1. How can I prevent his from happening? How can I mirror my local rebase operation on the remote repo?
  2. How can I remedy this situation? What would be the most elegant way to clean up the history an show only one commit?
link|improve this question

Can't you rebase develop on A? – Mat Sep 18 '11 at 15:49
Can you do a git merge instead? – Kit Ho Sep 18 '11 at 18:15
feedback

2 Answers

up vote 3 down vote accepted
  1. A rebase is rewriting history - to avoid trouble don't rebase things that are pushed.

  2. You can push --force while A is checked out. origin/A history will be overwritten with your version of A. Note that this will require manual intervention from other developers in their repos afterwards.

link|improve this answer
Well… if you put it like that, you make it sound simple. – avdgaag Sep 18 '11 at 18:01
For JBoss AS 7 GitHub repo, it was decided they don't want merges in history, so all branches are rebased. So every feature branch needs to be treated like this, and sub-commiters need to synchronize (rebase) only on this branch. Can get messy quite easily. – Ondra Žižka Oct 17 '11 at 5:14
feedback

How can I prevent his from happening? How can I mirror my local rebase operation on the remote repo?

How can I remedy this situation? What would be the most elegant way to clean up the history an show only one commit?

Delete the remote branch and repush your new rebased branch. If other members of your team may have pulled your branch 'A' let them know to delete that branch and repull a fresh version.

link|improve this answer
... and if they (likely) work on that branch, tell them to rebase on the branch you just rebased. – Ondra Žižka Oct 17 '11 at 5:16
feedback

Your Answer

 
or
required, but never shown

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