Thread (3 messages) flat view 3 messages, 3 authors, 2016-06-15

Re: Rebase a whole tree from one commit to another?

From: Clemens Buchacher <hidden>
Date: 2016-06-15 22:46:47

On Fri, May 15, 2009 at 09:38:53PM +0200, Dirk Süsserott wrote:
    git rebase new-master branch-a
    git rebase branch-a   branch-b
    git rebase branch-b   branch-c
You probably want something like

	git rebase new-master branch-a
	git rebase --onto branch-a branch-a@{1} branch-b
	git rebase --onto branch-b branch-b@{1} branch-c

instead, because if you have any conflicts during rebase, the rebased
commits will no longer be recognized as identical, causing even more
conflicts in the following rebases.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help