git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Phillip Wood <phillip.wood123@gmail.com>
To: Leah Neukirchen <leah@vuxu.org>, git@vger.kernel.org
Cc: Elijah Newren <newren@gmail.com>,
	Johannes Schindelin <Johannes.Schindelin@gmx.de>
Subject: Re: [RFC PATCH] sequencer: do_commit: print the change summary ala git-am
Date: Thu, 16 Apr 2020 16:02:40 +0100	[thread overview]
Message-ID: <77013d6c-6068-acd8-09be-3da8fc9904ea@gmail.com> (raw)
In-Reply-To: <87mu7blg9w.fsf@vuxu.org>

Hi Leah

Thanks for the patch

On 16/04/2020 13:39, Leah Neukirchen wrote:
> 
> This makes the output of "git pull --rebase" look as if using the
> apply backend.
>
> Signed-off-by: Leah Neukirchen <leah@vuxu.org>
> ---
> I noticed that the new "merge" rebase backend does not print lines ala
> "Applying: reticulate the splines" anymore.  I found these useful when
> using "git pull --rebase", as one easily saw which unpushed patches
> were in the tree.  (Also, eliminated patches were not printed anymore,
> but that is a special thing about our workflow, where many committers
> can do exactly the same trivial patches often.)
> 
> I found do_commit to be the best place to put this, but I'm not
> super familiar with the Git code base; perhaps this also prints
> in other invocations where it rather shouldn't.

I think it also changes the output of rebase -i/-r, cherry-pick and 
revert. Fixing the latter two is easy, it will be trickier to fix the 
former. Rebase -i/-r/-m already print 'Rebasing (n/m)' as they apply 
each patch and reuses the same line if --verbose is not given to save 
terminal space where they are picking a large number of commits.

I can see why you want this output when rebasing after pulling, I'm not 
sure we necessarily want to change the output of rebase -i/-m/-r though. 
Maybe we can add a member to struct replay_opts that is set by pull and 
rebase --apply or maybe we should print the commit subject when 
--verbose is set. I'm not really sure at the moment - I've cc'd Elijah 
and dscho to see if they have any thoughts

> linelen is taken from builtin/am.c.

A minor point - the sequencer uses the subject as given by 'log 
--pretty=%s' when creating the todo list and I think that is probably 
what we should be printing (both here and for am). This is subtly 
different from using linelen() as --pretty=%s unwraps all the lines 
before the first empty line of the commit message so

   line one
   line two

   commit message body

would appear as 'line one line two' whereas linelen() just gives 'line one'

Best Wishes

Phillip


>   sequencer.c | 12 ++++++++++++
>   1 file changed, 12 insertions(+)
> 
> diff --git a/sequencer.c b/sequencer.c
> index 6fd2674632..5e315eda1c 100644
> --- a/sequencer.c
> +++ b/sequencer.c
> @@ -1442,6 +1442,14 @@ static int write_rebase_head(struct object_id *oid)
>   	return 0;
>   }
>   
> +/**
> + * Returns the length of the first line of msg.
> + */
> +static int linelen(const char *msg)
> +{
> +        return strchrnul(msg, '\n') - msg;
> +}
> +
>   static int do_commit(struct repository *r,
>   		     const char *msg_file, const char *author,
>   		     struct replay_opts *opts, unsigned int flags,
> @@ -1458,6 +1466,10 @@ static int do_commit(struct repository *r,
>   					     "from '%s'"),
>   					   msg_file);
>   
> +		if (!opts->quiet)
> +			fprintf_ln(stdout, _("Applying: %.*s"),
> +				linelen(sb.buf), sb.buf);
> +
>   		res = try_to_commit(r, msg_file ? &sb : NULL,
>   				    author, opts, flags, &oid);
>   		strbuf_release(&sb);
> 

      reply	other threads:[~2020-04-16 15:02 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-16 12:39 [RFC PATCH] sequencer: do_commit: print the change summary ala git-am Leah Neukirchen
2020-04-16 15:02 ` Phillip Wood [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

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=77013d6c-6068-acd8-09be-3da8fc9904ea@gmail.com \
    --to=phillip.wood123@gmail.com \
    --cc=Johannes.Schindelin@gmx.de \
    --cc=git@vger.kernel.org \
    --cc=leah@vuxu.org \
    --cc=newren@gmail.com \
    --cc=phillip.wood@dunelm.org.uk \
    /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.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).