From: "Wiktor Mis via GitGitGadget" <gitgitgadget@gmail.com>
To: git@vger.kernel.org
Cc: Wiktor Mis <mwiktor023@gmail.com>, Wiktor Mis <mwiktor023@gmail.com>
Subject: [PATCH] Add completion for short options
Date: Tue, 25 Nov 2025 06:38:59 +0000 [thread overview]
Message-ID: <pull.2100.git.git.1764052739534.gitgitgadget@gmail.com> (raw)
From: Wiktor Mis <mwiktor023@gmail.com>
Git provided completion for long options but not the short ones
Signed-off-by: Wiktor Mis <mwiktor023@gmail.com>
---
Add completion for short options
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-2100%2FWiktorro%2Fpatch-3-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-2100/Wiktorro/patch-3-v1
Pull-Request: https://github.com/git/git/pull/2100
contrib/completion/git-completion.bash | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 73abea31b4..3f1d6c0955 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -3916,6 +3916,16 @@ __git_main ()
--help
"
;;
+ -*)
+ __gitcomp "
+ -C
+ -P
+ -c
+ -h
+ -p
+ -v
+ "
+ ;;
*)
if test -n "${GIT_TESTING_PORCELAIN_COMMAND_LIST-}"
then
base-commit: fd372d9b1a69a01a676398882bbe3840bf51fe72
--
gitgitgadget
next reply other threads:[~2025-11-25 6:39 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-25 6:38 Wiktor Mis via GitGitGadget [this message]
2025-11-25 16:42 ` [PATCH] Add completion for short options Junio C Hamano
2025-11-26 16:26 ` [PATCH v2] completion: complete "git -<TAB>" with " Wiktor Mis via GitGitGadget
2025-11-26 20:09 ` Junio C Hamano
2025-11-27 7:33 ` SZEDER Gábor
2025-11-27 21:59 ` Junio C Hamano
2025-12-07 0:38 ` 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=pull.2100.git.git.1764052739534.gitgitgadget@gmail.com \
--to=gitgitgadget@gmail.com \
--cc=git@vger.kernel.org \
--cc=mwiktor023@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).