Message ID | ce26446b1a2e7bf14cdf814ca56c37b2e7d6b578.1607686618.git.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 675704c74dd4476f455bfa91e72eb9e163317c10 |
Headers | show |
Series | Add helpful advice about init.defaultBranch | expand |
On Fri, Dec 11, 2020 at 11:36:57AM +0000, Johannes Schindelin via GitGitGadget wrote: > From: Johannes Schindelin <johannes.schindelin@gmx.de> > > To give ample warning for users wishing to override Git's the fall-back > for an unconfigured `init.defaultBranch` (in case we decide to change it > in a future Git version), let's introduce some advice that is shown upon > `git init` when that value is not set. > > Note: two test cases in Git's test suite want to verify that the > `stderr` output of `git init` is empty. It is now necessary to suppress > the advice, we now do that via the `init.defaultBranch` setting. While > not strictly necessary, we also set this to `false` in > `test_create_repo()`. > > Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> > --- > diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh > index 59bbf75e832..9910102ae1f 100644 > --- a/t/test-lib-functions.sh > +++ b/t/test-lib-functions.sh > @@ -1202,7 +1202,9 @@ test_create_repo () { > mkdir -p "$repo" > ( > cd "$repo" || error "Cannot setup test environment" > - "${GIT_TEST_INSTALLED:-$GIT_EXEC_PATH}/git$X" init \ > + "${GIT_TEST_INSTALLED:-$GIT_EXEC_PATH}/git$X" -c \ > + init.defaultBranch="${GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME-master}" \ > + init \ > "--template=$GIT_BUILD_DIR/templates/blt/" >&3 2>&4 || This breaks GIT_TEST_INSTALLED when the given Git version doesn't yet contain 8b1fa77867 (Allow passing of configuration parameters in the command line, 2010-03-26): $ GIT_TEST_INSTALLED=.../v1.6.0/bin/ ./t9999-test.sh -x Unknown option: -c usage: git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate|--no-pager] [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE] [--help] COMMAND [ARGS] error: cannot run git init -- have you built things yet? > error "cannot run git init -- have you built things yet?" > mv .git/hooks .git/hooks-disabled > -- > gitgitgadget
SZEDER Gábor <szeder.dev@gmail.com> writes: >> - "${GIT_TEST_INSTALLED:-$GIT_EXEC_PATH}/git$X" init \ >> + "${GIT_TEST_INSTALLED:-$GIT_EXEC_PATH}/git$X" -c \ >> + init.defaultBranch="${GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME-master}" \ >> + init \ >> "--template=$GIT_BUILD_DIR/templates/blt/" >&3 2>&4 || > > This breaks GIT_TEST_INSTALLED when the given Git version doesn't yet > contain 8b1fa77867 (Allow passing of configuration parameters in the > command line, 2010-03-26): Yes, but test-installed is about running an old version of Git on the current Git test suite. In the tests we make liberal use of "git -c <var>=<val>", which such an old version of Git has no chance of passing. So...
On Tue, Feb 02, 2021 at 02:25:01PM -0800, Junio C Hamano wrote: > SZEDER Gábor <szeder.dev@gmail.com> writes: > > >> - "${GIT_TEST_INSTALLED:-$GIT_EXEC_PATH}/git$X" init \ > >> + "${GIT_TEST_INSTALLED:-$GIT_EXEC_PATH}/git$X" -c \ > >> + init.defaultBranch="${GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME-master}" \ > >> + init \ > >> "--template=$GIT_BUILD_DIR/templates/blt/" >&3 2>&4 || > > > > This breaks GIT_TEST_INSTALLED when the given Git version doesn't yet > > contain 8b1fa77867 (Allow passing of configuration parameters in the > > command line, 2010-03-26): > > Yes, but test-installed is about running an old version of Git on > the current Git test suite. In the tests we make liberal use of > "git -c <var>=<val>", which such an old version of Git has no chance > of passing. So... I've never run the whole test suite with GIT_TEST_INSTALLED for the exact reason you mentioned. However, I do regularly use it with custom tests using only commands and options that already existed as early as v1.6.0 (my go-to "old" version) to check when some interesting or puzzling behavior appeared, and did just that yesterday as well.
diff --git a/refs.c b/refs.c index 8df03122d69..13dc2c3291b 100644 --- a/refs.c +++ b/refs.c @@ -562,6 +562,19 @@ void expand_ref_prefix(struct strvec *prefixes, const char *prefix) strvec_pushf(prefixes, *p, len, prefix); } +static const char default_branch_name_advice[] = N_( +"Using '%s' as the name for the initial branch. This default branch name\n" +"is subject to change. To configure the initial branch name to use in all\n" +"of your new repositories, which will suppress this warning, call:\n" +"\n" +"\tgit config --global init.defaultBranch <name>\n" +"\n" +"Names commonly chosen instead of 'master' are 'main', 'trunk' and\n" +"'development'. The just-created branch can be renamed via this command:\n" +"\n" +"\tgit branch -m <name>\n" +); + char *repo_default_branch_name(struct repository *r, int quiet) { const char *config_key = "init.defaultbranch"; @@ -574,8 +587,11 @@ char *repo_default_branch_name(struct repository *r, int quiet) else if (repo_config_get_string(r, config_key, &ret) < 0) die(_("could not retrieve `%s`"), config_display_key); - if (!ret) + if (!ret) { ret = xstrdup("master"); + if (!quiet) + advise(_(default_branch_name_advice), ret); + } full_ref = xstrfmt("refs/heads/%s", ret); if (check_refname_format(full_ref, 0)) diff --git a/t/t0001-init.sh b/t/t0001-init.sh index bb23e56a165..0803994874f 100755 --- a/t/t0001-init.sh +++ b/t/t0001-init.sh @@ -163,7 +163,7 @@ test_expect_success 'reinit' ' ( mkdir again && cd again && - git init >out1 2>err1 && + git -c init.defaultBranch=initial init >out1 2>err1 && git init >out2 2>err2 ) && test_i18ngrep "Initialized empty" again/out1 && @@ -558,6 +558,13 @@ test_expect_success 'overridden default initial branch name (config)' ' grep nmb actual ' +test_expect_success 'advice on unconfigured init.defaultBranch' ' + GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= git -c color.advice=always \ + init unconfigured-default-branch-name 2>err && + test_decode_color <err >decoded && + test_i18ngrep "<YELLOW>hint: " decoded +' + test_expect_success 'overridden default main branch name (env)' ' test_config_global init.defaultBranch nmb && GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=env git init main-branch-env && diff --git a/t/t1510-repo-setup.sh b/t/t1510-repo-setup.sh index 9974457f561..bbfe05b8e4a 100755 --- a/t/t1510-repo-setup.sh +++ b/t/t1510-repo-setup.sh @@ -79,7 +79,7 @@ setup_repo () { name=$1 worktreecfg=$2 gitfile=$3 barecfg=$4 && sane_unset GIT_DIR GIT_WORK_TREE && - git init "$name" && + git -c init.defaultBranch=initial init "$name" && maybe_config "$name/.git/config" core.worktree "$worktreecfg" && maybe_config "$name/.git/config" core.bare "$barecfg" && mkdir -p "$name/sub/sub" && diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index 59bbf75e832..9910102ae1f 100644 --- a/t/test-lib-functions.sh +++ b/t/test-lib-functions.sh @@ -1202,7 +1202,9 @@ test_create_repo () { mkdir -p "$repo" ( cd "$repo" || error "Cannot setup test environment" - "${GIT_TEST_INSTALLED:-$GIT_EXEC_PATH}/git$X" init \ + "${GIT_TEST_INSTALLED:-$GIT_EXEC_PATH}/git$X" -c \ + init.defaultBranch="${GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME-master}" \ + init \ "--template=$GIT_BUILD_DIR/templates/blt/" >&3 2>&4 || error "cannot run git init -- have you built things yet?" mv .git/hooks .git/hooks-disabled