From: "VALERI Yoann via GitGitGadget" <gitgitgadget@gmail.com>
To: git@vger.kernel.org
Cc: Patrick Steinhardt <ps@pks.im>,
Junio C Hamano <gitster@pobox.com>,
Yoann Valeri <yoann.valeri@cea.fr>,
Eric Sunshine <sunshine@sunshineco.com>,
Yoann Valeri <yoann.valeri@cea.fr>,
VALERI Yoann <yoann.valeri@cea.fr>
Subject: [PATCH v4 2/2] branch: add 'branch.namePrefix' config param
Date: Thu, 09 Apr 2026 10:43:10 +0000 [thread overview]
Message-ID: <80d1ffde9d3d55d0ff2b28219e2484fb12d543d9.1775731390.git.gitgitgadget@gmail.com> (raw)
In-Reply-To: <pull.2202.v4.git.git.1775731390.gitgitgadget@gmail.com>
From: VALERI Yoann <yoann.valeri@cea.fr>
This patch adds a new configuration parameter for the branch creation
feature: 'branch.namePrefix'. It corresponds to the '--name-prefix'
option of 'git branch' made as configuration parameter, and behaves
exactly like it.
Signed-off-by: VALERI Yoann <yoann.valeri@cea.fr>
---
Documentation/config/branch.adoc | 6 ++++++
builtin/branch.c | 5 +++++
t/t3200-branch.sh | 15 +++++++++++++++
3 files changed, 26 insertions(+)
diff --git a/Documentation/config/branch.adoc b/Documentation/config/branch.adoc
index a4db9fa5c8..392228c300 100644
--- a/Documentation/config/branch.adoc
+++ b/Documentation/config/branch.adoc
@@ -35,6 +35,12 @@ This option defaults to `never`.
value of this variable will be used as the default.
See linkgit:git-for-each-ref[1] field names for valid values.
+`branch.namePrefix`::
+ When a new branch is created with `git branch`, use the provided value as
+ prefix for its name. Can be '@{current}' to use the current branch's name
+ as prefix. This value can be overriden by using the '--[no-]name-prefix'
+ option of `git branch`.
+
`branch.<name>.remote`::
When on branch _<name>_, it tells `git fetch` and `git push`
which remote to fetch from or push to. The remote to push to
diff --git a/builtin/branch.c b/builtin/branch.c
index cf7d095f22..2987ac4122 100644
--- a/builtin/branch.c
+++ b/builtin/branch.c
@@ -726,6 +726,7 @@ int cmd_branch(int argc,
struct ref_format format = REF_FORMAT_INIT;
struct repo_config_values *cfg = repo_config_values(the_repository);
char *name_prefix = NULL;
+ char *safekeep_name_prefix;
int ret;
struct option options[] = {
@@ -809,6 +810,9 @@ int cmd_branch(int argc,
else if (!skip_prefix(head, "refs/heads/", &head))
die(_("HEAD not found below refs/heads!"));
+ repo_config_get_string(the_repository, "branch.namePrefix", &name_prefix);
+ safekeep_name_prefix = name_prefix;
+
argc = parse_options(argc, argv, prefix, options, builtin_branch_usage,
0);
@@ -1029,6 +1033,7 @@ int cmd_branch(int argc,
ret = 0;
out:
+ free(safekeep_name_prefix);
string_list_clear(&sorting_options, 0);
return ret;
}
diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh
index f81d4380a9..e75f886842 100755
--- a/t/t3200-branch.sh
+++ b/t/t3200-branch.sh
@@ -1741,4 +1741,19 @@ test_expect_success 'create branch with --name-prefix' '
git branch -D bn-with-no-prefix
'
+test_expect_success 'create branch with config prefix' '
+ test_config branch.autosetupmerge false &&
+ test_config branch.namePrefix blob &&
+ git branch -- -with-prefix &&
+ test_ref_exists refs/heads/blob-with-prefix &&
+ test_must_fail git branch -- -with-prefix &&
+ test_config branch.namePrefix "@{current}" &&
+ git checkout main &&
+ git branch -- -with-prefix &&
+ test_ref_exists refs/heads/main-with-prefix &&
+ git branch --no-name-prefix branch-with-no-prefix &&
+ test_ref_exists refs/heads/branch-with-no-prefix &&
+ git branch -D blob-with-prefix main-with-prefix branch-with-no-prefix
+'
+
test_done
--
gitgitgadget
next prev parent reply other threads:[~2026-04-09 10:43 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-20 8:07 [PATCH] branch: add 'branch.addCurrentBranchAsPrefix' config param Yoann Valeri via GitGitGadget
2026-02-20 15:59 ` Junio C Hamano
2026-02-20 16:08 ` Junio C Hamano
2026-02-27 15:48 ` [PATCH v2 0/2] " Yoann Valeri via GitGitGadget
2026-02-27 15:48 ` [PATCH v2 1/2] " VALERI Yoann via GitGitGadget
2026-02-27 15:48 ` [PATCH v2 2/2] branch: add a no-prefix option VALERI Yoann via GitGitGadget
2026-02-27 17:07 ` Junio C Hamano
2026-03-06 13:14 ` [PATCH v3 0/3] branch: add prefixes to new branch names Yoann Valeri via GitGitGadget
2026-03-06 13:14 ` [PATCH v3 1/3] branch: add '--name-prefix' option VALERI Yoann via GitGitGadget
2026-03-07 7:06 ` Eric Sunshine
2026-03-08 7:06 ` Junio C Hamano
2026-03-06 13:14 ` [PATCH v3 2/3] branch: add 'branch.namePrefix' config param VALERI Yoann via GitGitGadget
2026-03-07 7:07 ` Eric Sunshine
2026-03-06 13:14 ` [PATCH v3 3/3] branch: add '--no-name-prefix' option VALERI Yoann via GitGitGadget
2026-03-06 21:38 ` Junio C Hamano
2026-03-06 21:01 ` [PATCH v3 0/3] branch: add prefixes to new branch names Junio C Hamano
2026-03-07 7:05 ` Eric Sunshine
2026-03-08 6:48 ` Junio C Hamano
2026-04-09 10:43 ` [PATCH v4 0/2] " Yoann Valeri via GitGitGadget
2026-04-09 10:43 ` [PATCH v4 1/2] branch: add '--name-prefix' option VALERI Yoann via GitGitGadget
2026-04-09 10:43 ` VALERI Yoann via GitGitGadget [this message]
2026-04-09 19:52 ` [PATCH v4 2/2] branch: add 'branch.namePrefix' config param Junio C Hamano
2026-04-09 20:02 ` 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=80d1ffde9d3d55d0ff2b28219e2484fb12d543d9.1775731390.git.gitgitgadget@gmail.com \
--to=gitgitgadget@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=ps@pks.im \
--cc=sunshine@sunshineco.com \
--cc=yoann.valeri@cea.fr \
/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