From: Jonathan Nieder <jrnieder@gmail.com>
To: Bobby Powers <bobbypowers@gmail.com>
Cc: Jeff King <peff@peff.net>,
git@vger.kernel.org, gitster@pobox.com,
Christian Couder <chriscool@tuxfamily.org>
Subject: Re: [PATCH] cherry-pick: Add an option to prepend a string to the commit message
Date: Sat, 12 Jun 2010 02:18:50 -0500 [thread overview]
Message-ID: <20100612071850.GA2765@burratino> (raw)
In-Reply-To: <4C132C7E.5090606@gmail.com>
Bobby Powers wrote:
> On 06/11/2010 11:28 PM, Jeff King wrote:
>> FWIW, we can already do this kind of stuff with:
>>
>> GIT_EDITOR="sed -i 1i$prefix" git cherry-pick -e $ref
>>
>> or
>>
>> git cherry-pick -n $ref&&
>> sed -i 1i$prefix .git/MERGE_MSG
>> GIT_EDITOR=true git commit
>>
>> I'll admit the first one is not very intuitive. But it is easy to script
>> around the second form. For one of my examples, I would probably do:
>>
>> git cherry-pick -n $ref&&
>> git log -1 --format='%s%n%ncontent between subject and body%n%b' |
>> git commit -F -
>
> I like this; it clearly hadn't occurred to me. I can just use this
> format instead.
Sorry to misunderstand. Maybe something like this could help. Patch
applies on top of cc/cherry-pick-series.
-- %< --
Subject: Documentation: explain use of cherry-pick -n in scripts
Add an example to indicate how to munge a commit while cherry-picking it.
The formatting is ugly because I do not know how to ask asciidoc to
use a multiline heading in a definition list.
Based-on-work-by: Jeff King <peff@peff.net>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
---
diff --git a/Documentation/git-cherry-pick.txt b/Documentation/git-cherry-pick.txt
index bcb4c75..4769ca5 100644
--- a/Documentation/git-cherry-pick.txt
+++ b/Documentation/git-cherry-pick.txt
@@ -113,6 +113,17 @@ git cherry-pick --ff ..next::
are in next but not HEAD to the current branch, creating a new
commit for each new change.
+------------
+git checkout maint &&
+git cherry-pick -n bugfix &&
+git add new_file.txt &&
+git show -s bugfix --format='%s%n%n%b%n%nAlso add a new file.' |
+git commit -F -
+------------
+
+ Apply a bugfix on top of the maint branch and tweak it before
+ creating a new commit to record it.
+
Author
------
Written by Junio C Hamano <gitster@pobox.com>
--
next prev parent reply other threads:[~2010-06-12 7:19 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-12 5:07 [PATCH] cherry-pick: Add an option to prepend a string to the commit message Bobby Powers
2010-06-12 5:58 ` Jonathan Nieder
2010-06-12 6:18 ` Junio C Hamano
2010-06-12 6:28 ` Jeff King
2010-06-12 6:43 ` Bobby Powers
2010-06-12 7:18 ` Jonathan Nieder [this message]
2010-06-12 8:19 ` Jeff King
2010-06-14 5:33 ` Junio C Hamano
2010-06-14 18:03 ` Junio C Hamano
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=20100612071850.GA2765@burratino \
--to=jrnieder@gmail.com \
--cc=bobbypowers@gmail.com \
--cc=chriscool@tuxfamily.org \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=peff@peff.net \
/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).