From: Pete Harlan <pgit@pcharlan.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: Andy Parkins <andyparkins@gmail.com>, git@vger.kernel.org
Subject: Re: [PATCH] contrib/hooks/post-receive-email: Make revision display configurable
Date: Mon, 03 Nov 2008 16:45:44 -0800 [thread overview]
Message-ID: <490F9B38.1060703@pcharlan.com> (raw)
In-Reply-To: <7vy700tmdx.fsf@gitster.siamese.dyndns.org>
Junio C Hamano wrote:
> Pete Harlan <pgit@pcharlan.com> writes:
>
>> Add configuration option hooks.showrev, letting the user override how
>> revisions will be shown in the commit email.
>>
>> Signed-off-by: Pete Harlan <pgit@pcharlan.com>
>> Acked-By: Andy Parkins <andyparkins@gmail.com>
>> @@ -390,8 +396,13 @@ generate_update_branch_email()
>>
>> echo ""
>> echo $LOGBEGIN
>> - git rev-parse --not --branches | grep -v $(git rev-parse $refname) |
>> - git rev-list --pretty --stdin $oldrev..$newrev
>> + git rev-parse --not --branches |
>> + grep -v $(git rev-parse $refname) |
>> + git rev-list --stdin $oldrev..$newrev |
>> + while read onerev
>> + do
>> + eval $(printf "$showrev" $onerev)
>> + done
>
> This would make the default "non-custom" case much less efficient. If we
> really cared, perhaps we could do something like this...
>
> git rev-parse --not --branches |
> grep -v "^$(git-rev-parse --not $refname)\$" |
> case "$using_custom_showrev" in
> yes)
> git rev-list --stdin $oldrev..$newrev |
> while read onerev
> do
> done
> ;;
> *)
> git rev-list --pretty --stdin $oldrev..newrev
> ;;
> esac
>
> But I suspect we do not care too much about it.
I agree about the efficiency; that bothered me when I wrote the patch,
but figured the lack of efficiency wouldn't be noticeable.
OTOH, it still bothers me; I'll write up a v2 patch that does something
much more like what you suggest.
Is it easier at this point for you to have a new patch that applies on
top of my previous patch, or a wholesale replacement for it? Or is
what's done done and that's the end of it for something this minor?
Thanks to you both for your time and work,
--Pete
>
> Will apply as submitted. Thanks
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2008-11-04 0:47 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-02 23:20 [PATCH] contrib/hooks/post-receive-email: Make revision display configurable Pete Harlan
2008-11-02 23:24 ` Pete Harlan
2008-11-03 9:49 ` Pete Harlan
2008-11-03 18:58 ` Andy Parkins
2008-11-03 23:34 ` Junio C Hamano
2008-11-04 0:45 ` Pete Harlan [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=490F9B38.1060703@pcharlan.com \
--to=pgit@pcharlan.com \
--cc=andyparkins@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.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 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.