summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2020-06-24 14:46:34 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-06-24 16:14:21 (GMT)
commit0cc1b475bbcc530c5429c741fbcfdc2730d27223 (patch)
tree5bd41c7715789e28f0ec109e95d31d500e445845 /Documentation
parent8747ebb7cde9e90d20794c06e6806f75cd540142 (diff)
downloadgit-0cc1b475bbcc530c5429c741fbcfdc2730d27223.zip
git-0cc1b475bbcc530c5429c741fbcfdc2730d27223.tar.gz
git-0cc1b475bbcc530c5429c741fbcfdc2730d27223.tar.bz2
clone: use configured default branch name when appropriate
When cloning a repository without any branches, Git chooses a default branch name for the as-yet unborn branch. As part of the implicit initialization of the local repository, Git just learned to respect `init.defaultBranch` to choose a different initial branch name. We now really want that branch name to be used as a fall-back. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/config/init.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/config/init.txt b/Documentation/config/init.txt
index 6ae4a38..dc77f8c 100644
--- a/Documentation/config/init.txt
+++ b/Documentation/config/init.txt
@@ -3,5 +3,5 @@ init.templateDir::
(See the "TEMPLATE DIRECTORY" section of linkgit:git-init[1].)
init.defaultBranch::
- Allows overriding the default branch name when initializing
- a new repository.
+ Allows overriding the default branch name e.g. when initializing
+ a new repository or when cloning an empty repository.