From: Junio C Hamano <gitster@pobox.com>
To: Jakub Narebski <jnareb@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: Annotating patches inside diff
Date: Wed, 10 Dec 2008 10:40:42 -0800 [thread overview]
Message-ID: <7vfxkv27rp.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: <200812101445.48034.jnareb@gmail.com> (Jakub Narebski's message of "Wed, 10 Dec 2008 14:45:47 +0100")
Jakub Narebski <jnareb@gmail.com> writes:
> I remember that long time ago on git mailing list there was discussed
> extending git-apply and friends (including git-am), to be able to
> ignore lines in patches with selected special prefix, different from
> '@' for chunks headers, ' ' for context, '+'/'-' for added/deleted
> lines. IIRC it was chose '|' for this purpose.
That's a blast from the past.
> This way you could annotate patch
>
> @@ -4667,7 +4667,6 @@ HTML
> ...
>
> Was it accepted or dropped, or is this feature present but not
> documented?
The code is simple, but I do not think it is a good idea to do so:
* If it is about describing the state (what it does, how it does it and
why), you should be writing that as in-code comments;
* If it is about describing the change (what it used to do and how, and
what it does after your change and how, and why you changed it that
way), i.e. "we used to do X but now we do Y for such and such reasons"
(your example is a good one, except in real life you would want to
state "why" as well), you should be writing that in the commit log
message; and
* If describing the change in the commit log message feels insufficient,
it probably is a sign that the patch is too big and covers too many
topics.
In other words, I think the problem the old patch attempted to solve was
this:
When you do too many things in a patch touching many places of the
code, and want to explain and justify all of them, your commit log
message becomes a list of "we used to do X but 7th hunk changes it to Y
because of Z" entries for different X, Y and Z. When this list gets
too big, it is easier to read through the patch if such explanation are
done close to where the changes described are.
For your reference, this was the dropped patch.
From: Junio C Hamano <junkio@cox.net>
Date: Fri, 8 Dec 2006 21:03:52 -0800
Subject: [PATCH] mailinfo: hack to accept in-line annotations in patches.
Long before git-apply, when I wanted to talk about rationale of
individual changes, I used to add annotation between hunks
(delimited @@ -n,m, +l,k @@) as unindented plain text and rely
on GNU patch to discard them as garbage. Because git-apply is
much less forgiving than GNU patch, this is not possible.
This patch teaches mailinfo that lines that begin with a '|' would
never appear in the patch text and can be discarded safely.
Which means that we can generate a patch as usual using format-patch,
and add annotations inline, prefixed with '|'.
Signed-off-by: Junio C Hamano <junkio@cox.net>
---
builtin-mailinfo.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/builtin-mailinfo.c b/builtin-mailinfo.c
index c95e477..2608260 100644
--- a/builtin-mailinfo.c
+++ b/builtin-mailinfo.c
@@ -720,8 +720,10 @@ static int handle_commit_msg(char *line)
static int handle_patch(char *line)
{
- fputs(line, patchfile);
- patch_lines++;
+ if (line[0] != '|') {
+ fputs(line, patchfile);
+ patch_lines++;
+ }
return 0;
}
prev parent reply other threads:[~2008-12-10 18:42 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-10 13:45 Annotating patches inside diff Jakub Narebski
2008-12-10 16:58 ` Johannes Schindelin
2008-12-10 18:40 ` Junio C Hamano [this message]
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=7vfxkv27rp.fsf@gitster.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=jnareb@gmail.com \
/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).