Kernel branches

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(Welcome to the jungle inoccent wiki page.)
Line 1: Line 1:
This page started with a copy of [[http://lists.openmoko.org/pipermail/openmoko-kernel/2008-November/006945.html this email]] sent by Andy Green to the kernel list.
 
  
 +
== Introduction ==
  
A fair amount of "administrivia" has built up, here's the executive summary:
+
This page started with a copy of [[http://lists.openmoko.org/pipermail/openmoko-kernel/2008-November/006945.html this email]] sent by Andy Green to the [[Openmoko]] kernel list. We will not reproduce it here in verbatim form thus you might want to read the email if this page doesn't make you happy enough.
  
~ 1) *-tracking branches in git have a history now
+
This page explains how we take advantage of GIT branches for kernel development at Openmoko. We have another page devoted to kernel development and use : [[Kernel]].
~ 2) pending-tracking created
+
~ 3) how it is decided what goes on which branch
+
~ 4) all patches end up in stable-tracking
+
~ 5) we will fork the new stable from andy-tracking
+
~ 6) target andy-tracking for patches
+
  
Rest of the email is explaining how or why.
+
== GIT History ==
  
 +
The branches whose names end in -tracking have a history in GIT. This history allows us to go back and to check who did what and when it happened.
  
1) *-tracking branches in git have a history now
+
Committed patches appear directly on the branch they were
 
+
committed on.  If a patch goes into stable-tracking it will appear
The last few days I have been using a new system in git where I hide the
+
hard rebases that are happening on my local tree for the -tracking
+
branches and instead make "MERGE" commits on the upstream branches.  It
+
seems to be working out so far so I explain what's going on.
+
 
+
Committed patches now only appear directly on the branch they were
+
committed on.  So if a patch goes into stable-tracking it will appear
+
 
there as normal, but what appears in the downstream branches rebasing
 
there as normal, but what appears in the downstream branches rebasing
 
off that is a single MERGE commit that contains whatever the diff is
 
off that is a single MERGE commit that contains whatever the diff is
between the unrebased and rebased version of that branch. Since I
+
between the unrebased and rebased version of that branch. Since Andy
rebase very often, it won't be unusual that the MERGE version used
+
rebases very often, it will not be unusual that the MERGE version used
 
downstream is just the one added upstream patch content, but it can also
 
downstream is just the one added upstream patch content, but it can also
 
be typical that the MERGE commit will contain the changes from dozens or
 
be typical that the MERGE commit will contain the changes from dozens or
Line 34: Line 23:
 
branches a linear history that you can rewind, despite that they are
 
branches a linear history that you can rewind, despite that they are
 
being hard rebased constantly.
 
being hard rebased constantly.
 +
 +
=== andy-tracking ===
 +
 +
We will fork stable kernels from this branch. This is the branch we usually target for patches but this is not always the case. If in doubt ask in the [[http://lists.openmoko.org/mailman/listinfo/openmoko-kernel mailing list]].
 +
 +
== pending-tracking ==
 +
== stable-tracking ==
  
  
Line 88: Line 84:
 
automatically be ready for either andy-tracking, pending-tracking
 
automatically be ready for either andy-tracking, pending-tracking
 
(usually) or stable-tracking depending on what it touched.
 
(usually) or stable-tracking depending on what it touched.
 +
 +
[[Category:Kernel]]
 +
[[Category:System Developers]]
 +
[[Category:Application Developer]]

Revision as of 05:52, 25 February 2009

Contents

Introduction

This page started with a copy of [this email] sent by Andy Green to the Openmoko kernel list. We will not reproduce it here in verbatim form thus you might want to read the email if this page doesn't make you happy enough.

This page explains how we take advantage of GIT branches for kernel development at Openmoko. We have another page devoted to kernel development and use : Kernel.

GIT History

The branches whose names end in -tracking have a history in GIT. This history allows us to go back and to check who did what and when it happened.

Committed patches appear directly on the branch they were committed on. If a patch goes into stable-tracking it will appear there as normal, but what appears in the downstream branches rebasing off that is a single MERGE commit that contains whatever the diff is between the unrebased and rebased version of that branch. Since Andy rebases very often, it will not be unusual that the MERGE version used downstream is just the one added upstream patch content, but it can also be typical that the MERGE commit will contain the changes from dozens or hundreds of patches when the Linus tree updates or example.

The reason for this new way is that it gives the public -tracking branches a linear history that you can rewind, despite that they are being hard rebased constantly.

andy-tracking

We will fork stable kernels from this branch. This is the branch we usually target for patches but this is not always the case. If in doubt ask in the [mailing list].

pending-tracking

stable-tracking

2) pending-tracking created

It's become clear we can end up with a bunch of patches from several directions heading into various upstreams if we're lucky. So I have introduced a "pending-tracking" that fits inbetween stable-tracking and andy-tracking, to temporarily hold all the patches that are expected to come from upstream eventually. Balaji-tracking feeds into this now, but there's other stuff like Matt's patches headed for s3c64xx upstream too. ~ This also allows me to publicly rebase Balaji's patches without writing in balaji-tracking, and it also allows me to track changes from balaji-tracking and elsewhere in one place too.


3) How is it decided what goes on which branch

~ - Patch belongs in upstream, eg, Linus or Ben Dooks tree --> pending-tracking. It's kept segregated because we expect it to turn up by upstream rebase path; if it changes on the way we can adapt it in pending-tracking and rebase

~ - Patch bases on stuff in pending-tracking, eg uses Balaji regulator things ---> andy-tracking. It's kept segregated because "it lives in the future" where the pending upstream patches arrived upstream.

~ - Neither of the above ---> stable-tracking


4) All patches end up in stable-tracking.

Stuff temporarily in pending-tracking will eventually turn up from upstream pulls, at that time it's no longer pending and is part of what stable-tracking rebased against. The now duplicate patch in pending-tracking is then removed. The patch ended up in stable-tracking.

Once the pending-tracking patch became part of stable-tracking, there is no reason for the patches modifying or depending on it held until now in andy-tracking not to merge back into stable-tracking either. So patches in andy-tracking gravitate to stable-tracking as soon as possible too.


5) We will fork the new stable from andy-tracking

Because andy-tracking is "living in the future" with latest pending upstream patches included, it makes sense to take the advantage from these even at the risk the patches will be rejected upstream.


6) Target andy-tracking for patches

If you simply target andy-tracking for patches, the resulting patch will automatically be ready for either andy-tracking, pending-tracking (usually) or stable-tracking depending on what it touched.

Personal tools

This page started with a copy of [this email] sent by Andy Green to the kernel list.


A fair amount of "administrivia" has built up, here's the executive summary:

~ 1) *-tracking branches in git have a history now ~ 2) pending-tracking created ~ 3) how it is decided what goes on which branch ~ 4) all patches end up in stable-tracking ~ 5) we will fork the new stable from andy-tracking ~ 6) target andy-tracking for patches

Rest of the email is explaining how or why.


1) *-tracking branches in git have a history now

The last few days I have been using a new system in git where I hide the hard rebases that are happening on my local tree for the -tracking branches and instead make "MERGE" commits on the upstream branches. It seems to be working out so far so I explain what's going on.

Committed patches now only appear directly on the branch they were committed on. So if a patch goes into stable-tracking it will appear there as normal, but what appears in the downstream branches rebasing off that is a single MERGE commit that contains whatever the diff is between the unrebased and rebased version of that branch. Since I rebase very often, it won't be unusual that the MERGE version used downstream is just the one added upstream patch content, but it can also be typical that the MERGE commit will contain the changes from dozens or hundreds of patches when the Linus tree updates or example.

The reason for this new way is that it gives the public -tracking branches a linear history that you can rewind, despite that they are being hard rebased constantly.


2) pending-tracking created

It's become clear we can end up with a bunch of patches from several directions heading into various upstreams if we're lucky. So I have introduced a "pending-tracking" that fits inbetween stable-tracking and andy-tracking, to temporarily hold all the patches that are expected to come from upstream eventually. Balaji-tracking feeds into this now, but there's other stuff like Matt's patches headed for s3c64xx upstream too. ~ This also allows me to publicly rebase Balaji's patches without writing in balaji-tracking, and it also allows me to track changes from balaji-tracking and elsewhere in one place too.


3) How is it decided what goes on which branch

~ - Patch belongs in upstream, eg, Linus or Ben Dooks tree --> pending-tracking. It's kept segregated because we expect it to turn up by upstream rebase path; if it changes on the way we can adapt it in pending-tracking and rebase

~ - Patch bases on stuff in pending-tracking, eg uses Balaji regulator things ---> andy-tracking. It's kept segregated because "it lives in the future" where the pending upstream patches arrived upstream.

~ - Neither of the above ---> stable-tracking


4) All patches end up in stable-tracking.

Stuff temporarily in pending-tracking will eventually turn up from upstream pulls, at that time it's no longer pending and is part of what stable-tracking rebased against. The now duplicate patch in pending-tracking is then removed. The patch ended up in stable-tracking.

Once the pending-tracking patch became part of stable-tracking, there is no reason for the patches modifying or depending on it held until now in andy-tracking not to merge back into stable-tracking either. So patches in andy-tracking gravitate to stable-tracking as soon as possible too.


5) We will fork the new stable from andy-tracking

Because andy-tracking is "living in the future" with latest pending upstream patches included, it makes sense to take the advantage from these even at the risk the patches will be rejected upstream.


6) Target andy-tracking for patches

If you simply target andy-tracking for patches, the resulting patch will automatically be ready for either andy-tracking, pending-tracking (usually) or stable-tracking depending on what it touched.