git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Add feature release instructions to MaintNotes addendum
@ 2009-03-30  5:35 rocketraman
  2009-03-30  5:35 ` [PATCH 2/2] Add feature release instructions to gitworkflows man page rocketraman
  2009-03-30  6:56 ` [PATCH 1/2] Add feature release instructions to MaintNotes addendum Junio C Hamano
  0 siblings, 2 replies; 13+ messages in thread
From: rocketraman @ 2009-03-30  5:35 UTC (permalink / raw)
  To: git

From: Raman Gupta <raman@rocketraman.com>

Based on a mailing list discussion, add the operations for creating a
feature release.

Signed-off-by: Raman Gupta <raman@rocketraman.com>
---
 Documentation/howto/maintain-git.txt |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/Documentation/howto/maintain-git.txt b/Documentation/howto/maintain-git.txt
index 4357e26..f8b7614 100644
--- a/Documentation/howto/maintain-git.txt
+++ b/Documentation/howto/maintain-git.txt
@@ -244,6 +244,27 @@ by doing the following:
    repo.or.cz
 
 
+A feature release of git is made by tagging 'master' with a tag
+matching vX.Y.Z, where X.Y.Z is the feature release version.
+
+ - Optionally, track the current 'maint' branch to support
+   new releases for the older codebase if necessary.
+
+     $ git branch maint-X.Y.(Z-1) maint
+
+ - The 'maint' branch is updated to the new release.
+
+     $ git branch -f maint master
+
+ - The 'next' branch may be rebuilt from the tip of 'master'
+   using the surviving topics on 'next'.
+
+     $ git branch -f next master
+     $ git merge ai/topic_in_next1
+     $ git merge ai/topic_in_next2
+     ...
+
+
 Some observations to be made.
 
  * Each topic is tested individually, and also together with
-- 
1.6.2

^ permalink raw reply related	[flat|nested] 13+ messages in thread
* [PATCH 1/2] Add feature release instructions to MaintNotes addendum
@ 2009-03-26  1:56 rocketraman
       [not found] ` <20090326121017.6117@nanako3.lavabit.com>
  0 siblings, 1 reply; 13+ messages in thread
From: rocketraman @ 2009-03-26  1:56 UTC (permalink / raw)
  To: git

From: Raman Gupta <raman@rocketraman.com>

Based on a mailing list discussion, add the operations for creating a
feature release.

Signed-off-by: Raman Gupta <raman@rocketraman.com>
---
 Documentation/howto/maintain-git.txt |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/Documentation/howto/maintain-git.txt b/Documentation/howto/maintain-git.txt
index 4357e26..f6ee0c5 100644
--- a/Documentation/howto/maintain-git.txt
+++ b/Documentation/howto/maintain-git.txt
@@ -244,6 +244,35 @@ by doing the following:
    repo.or.cz
 
 
+A feature release of git is made by tagging 'master' with a tag
+matching vX.Y.Z, where X.Y.Z is the feature release version.
+
+ - Optionally, track the current 'maint' branch to support
+   new releases for the older codebase if necessary.
+
+     $ git branch maint-X.Y.(Z-1) maint
+
+ - The 'maint' branch is updated to the new release.
+
+     $ git checkout maint
+     $ git merge master
+
+   This is equivalent to deleting maint and recreating it from
+   master, but it preserves the maint reflog.
+
+ - The 'next' branch may be rebuilt from the tip of 'master'
+   using the surviving topics on 'next'.
+
+     $ git branch -f next master
+
+   (Again, this approach preserves the reflog and per-branch
+   configuration of 'next')
+
+     $ git merge ai/topic_in_next1
+     $ git merge ai/topic_in_next2
+     ...
+
+
 Some observations to be made.
 
  * Each topic is tested individually, and also together with
-- 
1.6.2

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

end of thread, other threads:[~2009-04-01 16:16 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-30  5:35 [PATCH 1/2] Add feature release instructions to MaintNotes addendum rocketraman
2009-03-30  5:35 ` [PATCH 2/2] Add feature release instructions to gitworkflows man page rocketraman
2009-03-30  6:57   ` Junio C Hamano
2009-03-30 17:59     ` Raman Gupta
2009-03-30 18:14       ` Junio C Hamano
2009-03-30 18:40         ` Raman Gupta
2009-04-01 16:15           ` Junio C Hamano
2009-03-30  6:56 ` [PATCH 1/2] Add feature release instructions to MaintNotes addendum Junio C Hamano
2009-03-30 17:57   ` Raman Gupta
  -- strict thread matches above, loose matches on Subject: below --
2009-03-26  1:56 rocketraman
     [not found] ` <20090326121017.6117@nanako3.lavabit.com>
2009-03-26 13:51   ` Raman Gupta
2009-03-26 20:28     ` Junio C Hamano
2009-03-26 21:37       ` Raman Gupta

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).