git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: shejialuo <shejialuo@gmail.com>
To: Patrick Steinhardt <ps@pks.im>
Cc: git@vger.kernel.org
Subject: Re: [PATCH 02/14] pager: stop using `the_repository`
Date: Tue, 17 Dec 2024 20:17:59 +0800	[thread overview]
Message-ID: <Z2Fr90U9ujGFv2IT@ArchLinux> (raw)
In-Reply-To: <20241217-pks-use-the-repository-conversion-v1-2-0dba48bcc239@pks.im>

On Tue, Dec 17, 2024 at 07:43:49AM +0100, Patrick Steinhardt wrote:
> Stop using `the_repository` in the "pager" subsystem by passing in a
> repository when setting up the pager and when configuring it.
> 
> Adjust callers accordingly by using `the_repository`. While there may be
> some callers that have a repository available in their context, this
> trivial conversion allows for easier verification and bubbles up the use
> of `the_repository` by one level.
> 
> Signed-off-by: Patrick Steinhardt <ps@pks.im>
> ---
>  add-patch.c     |  2 +-
>  builtin/am.c    |  4 ++--
>  builtin/blame.c |  2 +-
>  builtin/grep.c  |  4 ++--
>  builtin/help.c  |  4 ++--
>  builtin/log.c   |  4 ++--
>  builtin/var.c   |  2 +-
>  diff.c          |  4 ++--
>  git.c           |  8 ++++----
>  pager.c         | 14 ++++++--------
>  pager.h         |  7 ++++---
>  11 files changed, 27 insertions(+), 28 deletions(-)
> 
> diff --git a/builtin/help.c b/builtin/help.c
> index 05136279cf7b1007ab754f5630c34536a5f9461f..c257079cebc3c09fb91f258c3b0148e2f204c0e7 100644
> --- a/builtin/help.c
> +++ b/builtin/help.c
> @@ -658,7 +658,7 @@ int cmd_help(int argc,
>  	case HELP_ACTION_ALL:
>  		opt_mode_usage(argc, "--all", help_format);
>  		if (verbose) {
> -			setup_pager();
> +			setup_pager(the_repository);

It's possible we run "git help" outside of the repository. Here we still
pass "the_repository" to the "setup_pager", it may be a little strange.
But later we will use the "repo" parameter instead of the global
variable "the_repository", so this is OK.

>  			list_all_cmds_help(show_external_commands,
>  					   show_aliases);
>  			return 0;


  reply	other threads:[~2024-12-17 12:17 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-17  6:43 [PATCH 00/14] Stop using `the_repository` in some trivial cases Patrick Steinhardt
2024-12-17  6:43 ` [PATCH 01/14] progress: stop using `the_repository` Patrick Steinhardt
2024-12-31  6:42   ` Karthik Nayak
2025-01-06 20:57   ` Toon Claes
2025-01-07  7:19     ` Patrick Steinhardt
2024-12-17  6:43 ` [PATCH 02/14] pager: " Patrick Steinhardt
2024-12-17 12:17   ` shejialuo [this message]
2024-12-31  6:55     ` Karthik Nayak
2024-12-17  6:43 ` [PATCH 03/14] trace: " Patrick Steinhardt
2024-12-17  6:43 ` [PATCH 04/14] serve: " Patrick Steinhardt
2024-12-17  6:43 ` [PATCH 05/14] send-pack: " Patrick Steinhardt
2024-12-17  6:43 ` [PATCH 06/14] server-info: " Patrick Steinhardt
2024-12-17 12:31   ` shejialuo
2024-12-17  6:43 ` [PATCH 07/14] diagnose: " Patrick Steinhardt
2024-12-17  6:43 ` [PATCH 08/14] mailinfo: " Patrick Steinhardt
2024-12-17  6:43 ` [PATCH 09/14] credential: " Patrick Steinhardt
2024-12-17  6:43 ` [PATCH 10/14] resolve-undo: " Patrick Steinhardt
2024-12-17  6:43 ` [PATCH 11/14] tmp-objdir: " Patrick Steinhardt
2024-12-17  6:43 ` [PATCH 12/14] add-interactive: " Patrick Steinhardt
2024-12-17  6:44 ` [PATCH 13/14] graph: " Patrick Steinhardt
2024-12-17  6:44 ` [PATCH 14/14] match-trees: " Patrick Steinhardt
2024-12-17 12:45 ` [PATCH 00/14] Stop using `the_repository` in some trivial cases shejialuo
2024-12-27 14:26   ` Patrick Steinhardt
2025-01-07 11:41 ` Karthik Nayak
2025-01-07 21:12   ` Toon Claes
2025-01-07 21:15     ` 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=Z2Fr90U9ujGFv2IT@ArchLinux \
    --to=shejialuo@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=ps@pks.im \
    /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).