All of lore.kernel.org
 help / color / mirror / Atom feed
* How to rebase after upstream was merged?
@ 2007-07-04 12:24 Johannes Sixt
  2007-07-04 13:30 ` Johannes Schindelin
  0 siblings, 1 reply; 3+ messages in thread
From: Johannes Sixt @ 2007-07-04 12:24 UTC (permalink / raw)
  To: git

I have this history:

o--o--o--o--o   <- origin
    \        \
     x--x--x--M--x--x  <- master (HEAD)

At this point I would like to rebase to straighten the history, but it
won't let me:

    $ git rebase origin
    Current branch master is up to date.

However, if there were additional commits on origin, it would work as
expected, i.e. all the 'x', but not 'M',  would be moved on top of
origin. The reason is that rebase checks whether the merge base of
origin and HEAD is origin, and exits early if it is.

I would like to extend the check to also check for linear history. How
can I do this most efficiently? My first try is along these lines:

  test $(git rev-list origin..HEAD | wc -l) = \
       $(git rev-list --no-merges origin..HEAD | wc -l)

Is there a better approach?

-- Hannes

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-07-04 13:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-04 12:24 How to rebase after upstream was merged? Johannes Sixt
2007-07-04 13:30 ` Johannes Schindelin
2007-07-04 13:45   ` Johannes Sixt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.