git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] stash: don't show irrelevant entry count in status
@ 2025-10-06 11:35 Miroma via GitGitGadget
  2025-10-06 14:43 ` Karthik Nayak
  2025-10-09 11:03 ` [PATCH v2] stash: show correct entries count Miroma via GitGitGadget
  0 siblings, 2 replies; 6+ messages in thread
From: Miroma via GitGitGadget @ 2025-10-06 11:35 UTC (permalink / raw)
  To: git; +Cc: Miroma, Miroma

From: Miroma <its.miroma@proton.me>

Currently, when status.showStash is set, 'stash pop' shows the
following, confusing, output:

    ...
    Your stash currently has 1 entry
    Dropped refs/stash@{0} (abc123...)

Signed-off-by: Miroma <its.miroma@proton.me>
---
    stash: don't show irrelevant entry count in status

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-2067%2Fits-miroma%2Fstash-no-status-showStash-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-2067/its-miroma/stash-no-status-showStash-v1
Pull-Request: https://github.com/git/git/pull/2067

 builtin/stash.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/builtin/stash.c b/builtin/stash.c
index 1977e50df2..2bd4b7d753 100644
--- a/builtin/stash.c
+++ b/builtin/stash.c
@@ -705,6 +705,9 @@ restore_untracked:
 			     absolute_path(repo_get_work_tree(the_repository)));
 		strvec_pushf(&cp.env, GIT_DIR_ENVIRONMENT"=%s",
 			     absolute_path(repo_get_git_dir(the_repository)));
+		strvec_push(&cp.env, "GIT_CONFIG_COUNT=1");
+		strvec_push(&cp.env, "GIT_CONFIG_KEY_0=status.showStash");
+		strvec_push(&cp.env, "GIT_CONFIG_VALUE_0=false");
 		strvec_push(&cp.args, "status");
 		run_command(&cp);
 	}

base-commit: c44beea485f0f2feaf460e2ac87fdd5608d63cf0
-- 
gitgitgadget

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2025-10-12 16:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-06 11:35 [PATCH] stash: don't show irrelevant entry count in status Miroma via GitGitGadget
2025-10-06 14:43 ` Karthik Nayak
2025-10-06 17:21   ` Junio C Hamano
2025-10-06 18:24     ` Miroma
2025-10-09 11:03 ` [PATCH v2] stash: show correct entries count Miroma via GitGitGadget
2025-10-12 16:45   ` Miroma

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).