git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Cc: Mikael Magnusson <mikachu@gmail.com>,
	git@vger.kernel.org, Thomas Gleixner <tglx@linutronix.de>
Subject: Re: linux-x86-tip: pilot error?
Date: Mon, 23 Jun 2008 09:14:41 +0200	[thread overview]
Message-ID: <20080623071441.GA28887@elte.hu> (raw)
In-Reply-To: <20080622132105.GD22569@linux.vnet.ibm.com>


* Paul E. McKenney <paulmck@linux.vnet.ibm.com> wrote:

> Trying "git-checkout -b tip-core-rcu 
> tip-core-rcu-2008-06-16_09.23_Mon" acts like it is doing something 
> useful, but doesn't find the recent updates, which I believe happened 
> -before- June 16 2008.

finding the rcu topic branch in -tip can be done the following way:

 $ git-branch -a | grep rcu
   tip/core/rcu

and doing a "git-log tip/core/rcu..linus/master" will show you the 
commits that are in the tip/core/rcu topic branch.

if you check out that branch for your own use, you should also do:

 $ git-merge linus/master

To bring it up to latest upstream. That merge, even if tip/core/rcu 
looks "old" will always be conflict-free, due to scripting we do:

tip-core-rcu-2008-06-16_09.23_Mon is not a snapshot of the rcu topic - 
it is "technical" tag of the upstream Linus -git tree against which the 
rcu topic is based.

We have to track the 'base' of every topic separately because otherwise 
we'd pollute the topic branches with the frequent merges to Linus's 
tree. (occasionally we merge to Linus's tree several times a day, that 
would lead to tons of merge commits that pollute the tree)

So instead we do "on-demand virtual merges": we have scripting which do 
the following: in each iteration step they merge to latest Linus, check 
whether there's any files touched by the merge that are changed by the 
topic branch too - if yes then the merge is made permanent and the "this 
is this topic's latest upstream" tag is updated. If the merge was 
conflict-free, we roll back the merge.

Is there a Git way of finding the common ancestor of a topic branch, 
when compared to upstream?

	Ingo

  parent reply	other threads:[~2008-06-23  7:16 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-22 12:36 linux-x86-tip: pilot error? Paul E. McKenney
2008-06-22 12:48 ` Mikael Magnusson
2008-06-22 13:21   ` Paul E. McKenney
2008-06-22 21:11     ` Mikael Magnusson
2008-06-22 21:42     ` Björn Steinbrink
2008-06-22 22:21       ` Paul E. McKenney
2008-06-23  7:14     ` Ingo Molnar [this message]
2008-06-23  9:57       ` Paul E. McKenney
2008-06-23 10:24         ` Ingo Molnar
2008-06-23 11:11           ` Paul E. McKenney
2008-06-23 11:22             ` Ingo Molnar
2008-06-23 16:14               ` Daniel Barkalow
2008-06-23 15:12       ` Jeff King
2008-06-23 15:31         ` Ingo Molnar
2008-06-23 16:05         ` Ingo Molnar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080623071441.GA28887@elte.hu \
    --to=mingo@elte.hu \
    --cc=git@vger.kernel.org \
    --cc=mikachu@gmail.com \
    --cc=paulmck@linux.vnet.ibm.com \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).