From: Seth Falcon <sethfalcon@gmail.com>
To: git@vger.kernel.org
Subject: Re: How to change merge message ("weenie commits")
Date: Thu, 25 Jan 2007 08:12:26 -0800 [thread overview]
Message-ID: <m2veiv9jbp.fsf@ziti.local> (raw)
In-Reply-To: <17848.54065.631799.755255@lisa.zopyra.com> (Bill Lear's message of "Thu, 25 Jan 2007 09:56:33 -0600")
Bill Lear <rael@zopyra.com> writes:
> So, when I merge my topic branch onto master, for example, I'd like
> the commit message to be something more thoughtful than the
> "checkpoint 1", "checkpoint 2", "fix typo", "redo sort algorithm",
> etc., etc., and be more like a short set of release notes, a summary
> of what all has been accomplished.
>
> Do others run into this and perhaps have a good solution?
Suppose you do your daily work on branch weenie, then one way would
be:
git format-patch -k master..weenie
git checkout master
git apply 00*.patch
## review, then git add and git commit where you would write a long
## commit message.
One nice thing about this workflow is that you can easily decide if
you want one single commit or a few commits to group logical groups of
the patch files.
+ seth
next prev parent reply other threads:[~2007-01-25 16:12 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-01-25 15:56 How to change merge message ("weenie commits") Bill Lear
2007-01-25 16:05 ` Santi Béjar
2007-01-25 16:07 ` J. Bruce Fields
2007-01-25 16:12 ` Seth Falcon [this message]
2007-01-25 16:16 ` Karl Hasselström
2007-01-26 12:54 ` Jakub Narebski
2007-01-25 22:54 ` Junio C Hamano
2007-01-26 23:24 ` Robin Rosenberg
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=m2veiv9jbp.fsf@ziti.local \
--to=sethfalcon@gmail.com \
--cc=git@vger.kernel.org \
/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 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.