t3200: finish transitioning to the initial branch name main

In 56300ff356 (t3200: prepare for `main` being shorter than `master`,
2020-10-23) and in 66713e84e7 (tests: prepare aligned mentions of the
default branch name, 2020-10-23), we started to prepare t3200 for a new
world where `git init` uses the branch name `main` for the initial
branch.

We do not even have to wait for that new world: we can easily ensure
that that branch name is used, independent of the exact name `git init`
will give the initial branch, so let's do that.

This also lets us remove the `PREPARE_FOR_MAIN_BRANCH` prereq from three
test cases in that script.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Johannes Schindelin
2020-12-17 01:07:01 +00:00
committed by Junio C Hamano
parent 35a16dbe32
commit ec9779bcd8

View File

@ -12,6 +12,7 @@ test_expect_success 'prepare a trivial repository' '
echo Hello >A && echo Hello >A &&
git update-index --add A && git update-index --add A &&
git commit -m "Initial commit." && git commit -m "Initial commit." &&
git branch -M main &&
echo World >>A && echo World >>A &&
git update-index --add A && git update-index --add A &&
git commit -m "Second commit." && git commit -m "Second commit." &&
@ -27,8 +28,8 @@ test_expect_success 'branch -h in broken repository' '
mkdir broken && mkdir broken &&
( (
cd broken && cd broken &&
git init && git init -b main &&
>.git/refs/heads/master && >.git/refs/heads/main &&
test_expect_code 129 git branch -h >usage 2>&1 test_expect_code 129 git branch -h >usage 2>&1
) && ) &&
test_i18ngrep "[Uu]sage" broken/usage test_i18ngrep "[Uu]sage" broken/usage
@ -42,8 +43,8 @@ test_expect_success 'git branch a/b/c should create a branch' '
git branch a/b/c && test_path_is_file .git/refs/heads/a/b/c git branch a/b/c && test_path_is_file .git/refs/heads/a/b/c
' '
test_expect_success 'git branch mb master... should create a branch' ' test_expect_success 'git branch mb main... should create a branch' '
git branch mb master... && test_path_is_file .git/refs/heads/mb git branch mb main... && test_path_is_file .git/refs/heads/mb
' '
test_expect_success 'git branch HEAD should fail' ' test_expect_success 'git branch HEAD should fail' '
@ -51,7 +52,7 @@ test_expect_success 'git branch HEAD should fail' '
' '
cat >expect <<EOF cat >expect <<EOF
$ZERO_OID $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from master $ZERO_OID $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from main
EOF EOF
test_expect_success 'git branch --create-reflog d/e/f should create a branch and a log' ' test_expect_success 'git branch --create-reflog d/e/f should create a branch and a log' '
GIT_COMMITTER_DATE="2005-05-26 23:30" \ GIT_COMMITTER_DATE="2005-05-26 23:30" \
@ -110,7 +111,7 @@ test_expect_success 'git branch -m n/n n should work' '
test_expect_success 'git branch -m bbb should rename checked out branch' ' test_expect_success 'git branch -m bbb should rename checked out branch' '
test_when_finished git branch -D bbb && test_when_finished git branch -D bbb &&
test_when_finished git checkout master && test_when_finished git checkout main &&
git checkout -b aaa && git checkout -b aaa &&
git commit --allow-empty -m "a new commit" && git commit --allow-empty -m "a new commit" &&
git rev-parse aaa@{0} >expect && git rev-parse aaa@{0} >expect &&
@ -124,7 +125,7 @@ test_expect_success 'git branch -m bbb should rename checked out branch' '
test_expect_success 'renaming checked out branch works with d/f conflict' ' test_expect_success 'renaming checked out branch works with d/f conflict' '
test_when_finished "git branch -D foo/bar || git branch -D foo" && test_when_finished "git branch -D foo/bar || git branch -D foo" &&
test_when_finished git checkout master && test_when_finished git checkout main &&
git checkout -b foo && git checkout -b foo &&
git branch -m foo/bar && git branch -m foo/bar &&
git symbolic-ref HEAD >actual && git symbolic-ref HEAD >actual &&
@ -178,14 +179,14 @@ test_expect_success 'git branch -M baz bam should add entries to .git/logs/HEAD'
' '
test_expect_success 'git branch -M should leave orphaned HEAD alone' ' test_expect_success 'git branch -M should leave orphaned HEAD alone' '
git init orphan && git init -b main orphan &&
( (
cd orphan && cd orphan &&
test_commit initial && test_commit initial &&
git checkout --orphan lonely && git checkout --orphan lonely &&
grep lonely .git/HEAD && grep lonely .git/HEAD &&
test_path_is_missing .git/refs/head/lonely && test_path_is_missing .git/refs/head/lonely &&
git branch -M master mistress && git branch -M main mistress &&
grep lonely .git/HEAD grep lonely .git/HEAD
) )
' '
@ -201,7 +202,7 @@ test_expect_success 'resulting reflog can be shown by log -g' '
' '
test_expect_success 'git branch -M baz bam should succeed when baz is checked out as linked working tree' ' test_expect_success 'git branch -M baz bam should succeed when baz is checked out as linked working tree' '
git checkout master && git checkout main &&
git worktree add -b baz bazdir && git worktree add -b baz bazdir &&
git worktree add -f bazdir2 baz && git worktree add -f bazdir2 baz &&
git branch -M baz bam && git branch -M baz bam &&
@ -224,18 +225,18 @@ test_expect_success 'git branch -M baz bam should succeed within a worktree in w
git worktree prune git worktree prune
' '
test_expect_success 'git branch -M master should work when master is checked out' ' test_expect_success 'git branch -M main should work when main is checked out' '
git checkout master && git checkout main &&
git branch -M master git branch -M main
' '
test_expect_success 'git branch -M master master should work when master is checked out' ' test_expect_success 'git branch -M main main should work when main is checked out' '
git checkout master && git checkout main &&
git branch -M master master git branch -M main main
' '
test_expect_success 'git branch -M topic topic should work when master is checked out' ' test_expect_success 'git branch -M topic topic should work when main is checked out' '
git checkout master && git checkout main &&
git branch topic && git branch topic &&
git branch -M topic topic git branch -M topic topic
' '
@ -289,11 +290,11 @@ test_expect_success 'deleting checked-out branch from repo that is a submodule'
test_expect_success 'bare main worktree has HEAD at branch deleted by secondary worktree' ' test_expect_success 'bare main worktree has HEAD at branch deleted by secondary worktree' '
test_when_finished "rm -rf nonbare base secondary" && test_when_finished "rm -rf nonbare base secondary" &&
git init nonbare && git init -b main nonbare &&
test_commit -C nonbare x && test_commit -C nonbare x &&
git clone --bare nonbare bare && git clone --bare nonbare bare &&
git -C bare worktree add --detach ../secondary master && git -C bare worktree add --detach ../secondary main &&
git -C secondary branch -D master git -C secondary branch -D main
' '
test_expect_success 'git branch --list -v with --abbrev' ' test_expect_success 'git branch --list -v with --abbrev' '
@ -321,7 +322,7 @@ test_expect_success 'git branch --list -v with --abbrev' '
' '
test_expect_success PREPARE_FOR_MAIN_BRANCH 'git branch --column' ' test_expect_success 'git branch --column' '
COLUMNS=81 git branch --column=column >actual && COLUMNS=81 git branch --column=column >actual &&
cat >expect <<\EOF && cat >expect <<\EOF &&
a/b/c bam foo l * main n o/p r a/b/c bam foo l * main n o/p r
@ -345,7 +346,7 @@ test_expect_success 'git branch --column with an extremely long branch name' '
j/k j/k
l l
m/m m/m
* master * main
mb mb
n n
o/o o/o
@ -358,7 +359,7 @@ EOF
test_cmp expect actual test_cmp expect actual
' '
test_expect_success PREPARE_FOR_MAIN_BRANCH 'git branch with column.*' ' test_expect_success 'git branch with column.*' '
git config column.ui column && git config column.ui column &&
git config column.branch "dense" && git config column.branch "dense" &&
COLUMNS=80 git branch >actual && COLUMNS=80 git branch >actual &&
@ -375,7 +376,7 @@ test_expect_success 'git branch --column -v should fail' '
test_must_fail git branch --column -v test_must_fail git branch --column -v
' '
test_expect_success PREPARE_FOR_MAIN_BRANCH 'git branch -v with column.ui ignored' ' test_expect_success 'git branch -v with column.ui ignored' '
git config column.ui column && git config column.ui column &&
COLUMNS=80 git branch -v | cut -c -8 | sed "s/ *$//" >actual && COLUMNS=80 git branch -v | cut -c -8 | sed "s/ *$//" >actual &&
git config --unset column.ui && git config --unset column.ui &&
@ -388,7 +389,7 @@ test_expect_success PREPARE_FOR_MAIN_BRANCH 'git branch -v with column.ui ignore
j/k j/k
l l
m/m m/m
* master * main
mb mb
n n
o/o o/o
@ -427,8 +428,8 @@ test_expect_success 'config information was renamed, too' '
' '
test_expect_success 'git branch -m correctly renames multiple config sections' ' test_expect_success 'git branch -m correctly renames multiple config sections' '
test_when_finished "git checkout master" && test_when_finished "git checkout main" &&
git checkout -b source master && git checkout -b source main &&
# Assert that a config file with multiple config sections has # Assert that a config file with multiple config sections has
# those sections preserved... # those sections preserved...
@ -587,18 +588,18 @@ test_expect_success 'git branch -C c1 c2 should never touch HEAD' '
! grep "$msg$" .git/logs/HEAD ! grep "$msg$" .git/logs/HEAD
' '
test_expect_success 'git branch -C master should work when master is checked out' ' test_expect_success 'git branch -C main should work when main is checked out' '
git checkout master && git checkout main &&
git branch -C master git branch -C main
' '
test_expect_success 'git branch -C master master should work when master is checked out' ' test_expect_success 'git branch -C main main should work when main is checked out' '
git checkout master && git checkout main &&
git branch -C master master git branch -C main main
' '
test_expect_success 'git branch -C main5 main5 should work when master is checked out' ' test_expect_success 'git branch -C main5 main5 should work when main is checked out' '
git checkout master && git checkout main &&
git branch main5 && git branch main5 &&
git branch -C main5 main5 git branch -C main5 main5
' '
@ -620,8 +621,8 @@ test_expect_success 'git branch -C ab cd should overwrite existing config for cd
test_expect_success 'git branch -c correctly copies multiple config sections' ' test_expect_success 'git branch -c correctly copies multiple config sections' '
FOO=1 && FOO=1 &&
export FOO && export FOO &&
test_when_finished "git checkout master" && test_when_finished "git checkout main" &&
git checkout -b source2 master && git checkout -b source2 main &&
# Assert that a config file with multiple config sections has # Assert that a config file with multiple config sections has
# those sections preserved... # those sections preserved...
@ -711,10 +712,10 @@ test_expect_success 'deleting a self-referential symref' '
' '
test_expect_success 'renaming a symref is not allowed' ' test_expect_success 'renaming a symref is not allowed' '
git symbolic-ref refs/heads/topic refs/heads/master && git symbolic-ref refs/heads/topic refs/heads/main &&
test_must_fail git branch -m topic new-topic && test_must_fail git branch -m topic new-topic &&
git symbolic-ref refs/heads/topic && git symbolic-ref refs/heads/topic &&
test_path_is_file .git/refs/heads/master && test_path_is_file .git/refs/heads/main &&
test_path_is_missing .git/refs/heads/new-topic test_path_is_missing .git/refs/heads/new-topic
' '
@ -728,27 +729,27 @@ test_expect_success SYMLINKS 'git branch -m u v should fail when the reflog for
test_expect_success 'test tracking setup via --track' ' test_expect_success 'test tracking setup via --track' '
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --track my1 local/master && git branch --track my1 local/main &&
test $(git config branch.my1.remote) = local && test $(git config branch.my1.remote) = local &&
test $(git config branch.my1.merge) = refs/heads/master test $(git config branch.my1.merge) = refs/heads/main
' '
test_expect_success 'test tracking setup (non-wildcard, matching)' ' test_expect_success 'test tracking setup (non-wildcard, matching)' '
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/master:refs/remotes/local/master && git config remote.local.fetch refs/heads/main:refs/remotes/local/main &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --track my4 local/master && git branch --track my4 local/main &&
test $(git config branch.my4.remote) = local && test $(git config branch.my4.remote) = local &&
test $(git config branch.my4.merge) = refs/heads/master test $(git config branch.my4.merge) = refs/heads/main
' '
test_expect_success 'tracking setup fails on non-matching refspec' ' test_expect_success 'tracking setup fails on non-matching refspec' '
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git config remote.local.fetch refs/heads/s:refs/remotes/local/s && git config remote.local.fetch refs/heads/s:refs/remotes/local/s &&
test_must_fail git branch --track my5 local/master && test_must_fail git branch --track my5 local/main &&
test_must_fail git config branch.my5.remote && test_must_fail git config branch.my5.remote &&
test_must_fail git config branch.my5.merge test_must_fail git config branch.my5.merge
' '
@ -757,21 +758,21 @@ test_expect_success 'test tracking setup via config' '
git config branch.autosetupmerge true && git config branch.autosetupmerge true &&
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch my3 local/master && git branch my3 local/main &&
test $(git config branch.my3.remote) = local && test $(git config branch.my3.remote) = local &&
test $(git config branch.my3.merge) = refs/heads/master test $(git config branch.my3.merge) = refs/heads/main
' '
test_expect_success 'test overriding tracking setup via --no-track' ' test_expect_success 'test overriding tracking setup via --no-track' '
git config branch.autosetupmerge true && git config branch.autosetupmerge true &&
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --no-track my2 local/master && git branch --no-track my2 local/main &&
git config branch.autosetupmerge false && git config branch.autosetupmerge false &&
! test "$(git config branch.my2.remote)" = local && ! test "$(git config branch.my2.remote)" = local &&
! test "$(git config branch.my2.merge)" = refs/heads/master ! test "$(git config branch.my2.merge)" = refs/heads/main
' '
test_expect_success 'no tracking without .fetch entries' ' test_expect_success 'no tracking without .fetch entries' '
@ -836,26 +837,26 @@ test_expect_success 'branch from tag w/--track causes failure' '
test_expect_success '--set-upstream-to fails on multiple branches' ' test_expect_success '--set-upstream-to fails on multiple branches' '
echo "fatal: too many arguments to set new upstream" >expect && echo "fatal: too many arguments to set new upstream" >expect &&
test_must_fail git branch --set-upstream-to master a b c 2>err && test_must_fail git branch --set-upstream-to main a b c 2>err &&
test_i18ncmp expect err test_i18ncmp expect err
' '
test_expect_success '--set-upstream-to fails on detached HEAD' ' test_expect_success '--set-upstream-to fails on detached HEAD' '
git checkout HEAD^{} && git checkout HEAD^{} &&
test_when_finished git checkout - && test_when_finished git checkout - &&
echo "fatal: could not set upstream of HEAD to master when it does not point to any branch." >expect && echo "fatal: could not set upstream of HEAD to main when it does not point to any branch." >expect &&
test_must_fail git branch --set-upstream-to master 2>err && test_must_fail git branch --set-upstream-to main 2>err &&
test_i18ncmp expect err test_i18ncmp expect err
' '
test_expect_success '--set-upstream-to fails on a missing dst branch' ' test_expect_success '--set-upstream-to fails on a missing dst branch' '
echo "fatal: branch '"'"'does-not-exist'"'"' does not exist" >expect && echo "fatal: branch '"'"'does-not-exist'"'"' does not exist" >expect &&
test_must_fail git branch --set-upstream-to master does-not-exist 2>err && test_must_fail git branch --set-upstream-to main does-not-exist 2>err &&
test_i18ncmp expect err test_i18ncmp expect err
' '
test_expect_success '--set-upstream-to fails on a missing src branch' ' test_expect_success '--set-upstream-to fails on a missing src branch' '
test_must_fail git branch --set-upstream-to does-not-exist master 2>err && test_must_fail git branch --set-upstream-to does-not-exist main 2>err &&
test_i18ngrep "the requested upstream branch '"'"'does-not-exist'"'"' does not exist" err test_i18ngrep "the requested upstream branch '"'"'does-not-exist'"'"' does not exist" err
' '
@ -874,20 +875,20 @@ test_expect_success '--set-upstream-to fails on locked config' '
' '
test_expect_success 'use --set-upstream-to modify HEAD' ' test_expect_success 'use --set-upstream-to modify HEAD' '
test_config branch.master.remote foo && test_config branch.main.remote foo &&
test_config branch.master.merge foo && test_config branch.main.merge foo &&
git branch my12 && git branch my12 &&
git branch --set-upstream-to my12 && git branch --set-upstream-to my12 &&
test "$(git config branch.master.remote)" = "." && test "$(git config branch.main.remote)" = "." &&
test "$(git config branch.master.merge)" = "refs/heads/my12" test "$(git config branch.main.merge)" = "refs/heads/my12"
' '
test_expect_success 'use --set-upstream-to modify a particular branch' ' test_expect_success 'use --set-upstream-to modify a particular branch' '
git branch my13 && git branch my13 &&
git branch --set-upstream-to master my13 && git branch --set-upstream-to main my13 &&
test_when_finished "git branch --unset-upstream my13" && test_when_finished "git branch --unset-upstream my13" &&
test "$(git config branch.my13.remote)" = "." && test "$(git config branch.my13.remote)" = "." &&
test "$(git config branch.my13.merge)" = "refs/heads/master" test "$(git config branch.my13.merge)" = "refs/heads/main"
' '
test_expect_success '--unset-upstream should fail if given a non-existent branch' ' test_expect_success '--unset-upstream should fail if given a non-existent branch' '
@ -906,14 +907,14 @@ test_expect_success '--unset-upstream should fail if config is locked' '
test_expect_success 'test --unset-upstream on HEAD' ' test_expect_success 'test --unset-upstream on HEAD' '
git branch my14 && git branch my14 &&
test_config branch.master.remote foo && test_config branch.main.remote foo &&
test_config branch.master.merge foo && test_config branch.main.merge foo &&
git branch --set-upstream-to my14 && git branch --set-upstream-to my14 &&
git branch --unset-upstream && git branch --unset-upstream &&
test_must_fail git config branch.master.remote && test_must_fail git config branch.main.remote &&
test_must_fail git config branch.master.merge && test_must_fail git config branch.main.merge &&
# fail for a branch without upstream set # fail for a branch without upstream set
echo "fatal: Branch '"'"'master'"'"' has no upstream information" >expect && echo "fatal: Branch '"'"'main'"'"' has no upstream information" >expect &&
test_must_fail git branch --unset-upstream 2>err && test_must_fail git branch --unset-upstream 2>err &&
test_i18ncmp expect err test_i18ncmp expect err
' '
@ -934,14 +935,14 @@ test_expect_success '--unset-upstream should fail on detached HEAD' '
test_expect_success 'test --unset-upstream on a particular branch' ' test_expect_success 'test --unset-upstream on a particular branch' '
git branch my15 && git branch my15 &&
git branch --set-upstream-to master my14 && git branch --set-upstream-to main my14 &&
git branch --unset-upstream my14 && git branch --unset-upstream my14 &&
test_must_fail git config branch.my14.remote && test_must_fail git config branch.my14.remote &&
test_must_fail git config branch.my14.merge test_must_fail git config branch.my14.merge
' '
test_expect_success 'disabled option --set-upstream fails' ' test_expect_success 'disabled option --set-upstream fails' '
test_must_fail git branch --set-upstream origin/master test_must_fail git branch --set-upstream origin/main
' '
test_expect_success '--set-upstream-to notices an error to set branch as own upstream' ' test_expect_success '--set-upstream-to notices an error to set branch as own upstream' '
@ -956,32 +957,32 @@ test_expect_success '--set-upstream-to notices an error to set branch as own ups
# Keep this test last, as it changes the current branch # Keep this test last, as it changes the current branch
cat >expect <<EOF cat >expect <<EOF
$ZERO_OID $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from master $ZERO_OID $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from main
EOF EOF
test_expect_success 'git checkout -b g/h/i -l should create a branch and a log' ' test_expect_success 'git checkout -b g/h/i -l should create a branch and a log' '
GIT_COMMITTER_DATE="2005-05-26 23:30" \ GIT_COMMITTER_DATE="2005-05-26 23:30" \
git checkout -b g/h/i -l master && git checkout -b g/h/i -l main &&
test_path_is_file .git/refs/heads/g/h/i && test_path_is_file .git/refs/heads/g/h/i &&
test_path_is_file .git/logs/refs/heads/g/h/i && test_path_is_file .git/logs/refs/heads/g/h/i &&
test_cmp expect .git/logs/refs/heads/g/h/i test_cmp expect .git/logs/refs/heads/g/h/i
' '
test_expect_success 'checkout -b makes reflog by default' ' test_expect_success 'checkout -b makes reflog by default' '
git checkout master && git checkout main &&
git config --unset core.logAllRefUpdates && git config --unset core.logAllRefUpdates &&
git checkout -b alpha && git checkout -b alpha &&
git rev-parse --verify alpha@{0} git rev-parse --verify alpha@{0}
' '
test_expect_success 'checkout -b does not make reflog when core.logAllRefUpdates = false' ' test_expect_success 'checkout -b does not make reflog when core.logAllRefUpdates = false' '
git checkout master && git checkout main &&
git config core.logAllRefUpdates false && git config core.logAllRefUpdates false &&
git checkout -b beta && git checkout -b beta &&
test_must_fail git rev-parse --verify beta@{0} test_must_fail git rev-parse --verify beta@{0}
' '
test_expect_success 'checkout -b with -l makes reflog when core.logAllRefUpdates = false' ' test_expect_success 'checkout -b with -l makes reflog when core.logAllRefUpdates = false' '
git checkout master && git checkout main &&
git checkout -lb gamma && git checkout -lb gamma &&
git config --unset core.logAllRefUpdates && git config --unset core.logAllRefUpdates &&
git rev-parse --verify gamma@{0} git rev-parse --verify gamma@{0}
@ -990,10 +991,10 @@ test_expect_success 'checkout -b with -l makes reflog when core.logAllRefUpdates
test_expect_success 'avoid ambiguous track' ' test_expect_success 'avoid ambiguous track' '
git config branch.autosetupmerge true && git config branch.autosetupmerge true &&
git config remote.ambi1.url lalala && git config remote.ambi1.url lalala &&
git config remote.ambi1.fetch refs/heads/lalala:refs/heads/master && git config remote.ambi1.fetch refs/heads/lalala:refs/heads/main &&
git config remote.ambi2.url lilili && git config remote.ambi2.url lilili &&
git config remote.ambi2.fetch refs/heads/lilili:refs/heads/master && git config remote.ambi2.fetch refs/heads/lilili:refs/heads/main &&
test_must_fail git branch all1 master && test_must_fail git branch all1 main &&
test -z "$(git config branch.all1.merge)" test -z "$(git config branch.all1.merge)"
' '
@ -1049,10 +1050,10 @@ test_expect_success 'autosetuprebase local on a tracked remote branch' '
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
git config branch.autosetuprebase local && git config branch.autosetuprebase local &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --track myr5 local/master && git branch --track myr5 local/main &&
test "$(git config branch.myr5.remote)" = local && test "$(git config branch.myr5.remote)" = local &&
test "$(git config branch.myr5.merge)" = refs/heads/master && test "$(git config branch.myr5.merge)" = refs/heads/main &&
! test "$(git config branch.myr5.rebase)" = true ! test "$(git config branch.myr5.rebase)" = true
' '
@ -1060,10 +1061,10 @@ test_expect_success 'autosetuprebase never on a tracked remote branch' '
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
git config branch.autosetuprebase never && git config branch.autosetuprebase never &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --track myr6 local/master && git branch --track myr6 local/main &&
test "$(git config branch.myr6.remote)" = local && test "$(git config branch.myr6.remote)" = local &&
test "$(git config branch.myr6.merge)" = refs/heads/master && test "$(git config branch.myr6.merge)" = refs/heads/main &&
! test "$(git config branch.myr6.rebase)" = true ! test "$(git config branch.myr6.rebase)" = true
' '
@ -1071,10 +1072,10 @@ test_expect_success 'autosetuprebase remote on a tracked remote branch' '
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
git config branch.autosetuprebase remote && git config branch.autosetuprebase remote &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --track myr7 local/master && git branch --track myr7 local/main &&
test "$(git config branch.myr7.remote)" = local && test "$(git config branch.myr7.remote)" = local &&
test "$(git config branch.myr7.merge)" = refs/heads/master && test "$(git config branch.myr7.merge)" = refs/heads/main &&
test "$(git config branch.myr7.rebase)" = true test "$(git config branch.myr7.rebase)" = true
' '
@ -1082,10 +1083,10 @@ test_expect_success 'autosetuprebase always on a tracked remote branch' '
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
git config branch.autosetuprebase remote && git config branch.autosetuprebase remote &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --track myr8 local/master && git branch --track myr8 local/main &&
test "$(git config branch.myr8.remote)" = local && test "$(git config branch.myr8.remote)" = local &&
test "$(git config branch.myr8.merge)" = refs/heads/master && test "$(git config branch.myr8.merge)" = refs/heads/main &&
test "$(git config branch.myr8.rebase)" = true test "$(git config branch.myr8.rebase)" = true
' '
@ -1093,10 +1094,10 @@ test_expect_success 'autosetuprebase unconfigured on a tracked remote branch' '
git config --unset branch.autosetuprebase && git config --unset branch.autosetuprebase &&
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --track myr9 local/master && git branch --track myr9 local/main &&
test "$(git config branch.myr9.remote)" = local && test "$(git config branch.myr9.remote)" = local &&
test "$(git config branch.myr9.merge)" = refs/heads/master && test "$(git config branch.myr9.merge)" = refs/heads/main &&
test "z$(git config branch.myr9.rebase)" = z test "z$(git config branch.myr9.rebase)" = z
' '
@ -1114,7 +1115,7 @@ test_expect_success 'autosetuprebase unconfigured on a tracked local branch' '
test_expect_success 'autosetuprebase unconfigured on untracked local branch' ' test_expect_success 'autosetuprebase unconfigured on untracked local branch' '
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --no-track myr11 mybase2 && git branch --no-track myr11 mybase2 &&
test "z$(git config branch.myr11.remote)" = z && test "z$(git config branch.myr11.remote)" = z &&
test "z$(git config branch.myr11.merge)" = z && test "z$(git config branch.myr11.merge)" = z &&
@ -1124,8 +1125,8 @@ test_expect_success 'autosetuprebase unconfigured on untracked local branch' '
test_expect_success 'autosetuprebase unconfigured on untracked remote branch' ' test_expect_success 'autosetuprebase unconfigured on untracked remote branch' '
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --no-track myr12 local/master && git branch --no-track myr12 local/main &&
test "z$(git config branch.myr12.remote)" = z && test "z$(git config branch.myr12.remote)" = z &&
test "z$(git config branch.myr12.merge)" = z && test "z$(git config branch.myr12.merge)" = z &&
test "z$(git config branch.myr12.rebase)" = z test "z$(git config branch.myr12.rebase)" = z
@ -1135,7 +1136,7 @@ test_expect_success 'autosetuprebase never on an untracked local branch' '
git config branch.autosetuprebase never && git config branch.autosetuprebase never &&
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --no-track myr13 mybase2 && git branch --no-track myr13 mybase2 &&
test "z$(git config branch.myr13.remote)" = z && test "z$(git config branch.myr13.remote)" = z &&
test "z$(git config branch.myr13.merge)" = z && test "z$(git config branch.myr13.merge)" = z &&
@ -1146,7 +1147,7 @@ test_expect_success 'autosetuprebase local on an untracked local branch' '
git config branch.autosetuprebase local && git config branch.autosetuprebase local &&
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --no-track myr14 mybase2 && git branch --no-track myr14 mybase2 &&
test "z$(git config branch.myr14.remote)" = z && test "z$(git config branch.myr14.remote)" = z &&
test "z$(git config branch.myr14.merge)" = z && test "z$(git config branch.myr14.merge)" = z &&
@ -1157,7 +1158,7 @@ test_expect_success 'autosetuprebase remote on an untracked local branch' '
git config branch.autosetuprebase remote && git config branch.autosetuprebase remote &&
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --no-track myr15 mybase2 && git branch --no-track myr15 mybase2 &&
test "z$(git config branch.myr15.remote)" = z && test "z$(git config branch.myr15.remote)" = z &&
test "z$(git config branch.myr15.merge)" = z && test "z$(git config branch.myr15.merge)" = z &&
@ -1168,7 +1169,7 @@ test_expect_success 'autosetuprebase always on an untracked local branch' '
git config branch.autosetuprebase always && git config branch.autosetuprebase always &&
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --no-track myr16 mybase2 && git branch --no-track myr16 mybase2 &&
test "z$(git config branch.myr16.remote)" = z && test "z$(git config branch.myr16.remote)" = z &&
test "z$(git config branch.myr16.merge)" = z && test "z$(git config branch.myr16.merge)" = z &&
@ -1179,8 +1180,8 @@ test_expect_success 'autosetuprebase never on an untracked remote branch' '
git config branch.autosetuprebase never && git config branch.autosetuprebase never &&
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --no-track myr17 local/master && git branch --no-track myr17 local/main &&
test "z$(git config branch.myr17.remote)" = z && test "z$(git config branch.myr17.remote)" = z &&
test "z$(git config branch.myr17.merge)" = z && test "z$(git config branch.myr17.merge)" = z &&
test "z$(git config branch.myr17.rebase)" = z test "z$(git config branch.myr17.rebase)" = z
@ -1190,8 +1191,8 @@ test_expect_success 'autosetuprebase local on an untracked remote branch' '
git config branch.autosetuprebase local && git config branch.autosetuprebase local &&
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --no-track myr18 local/master && git branch --no-track myr18 local/main &&
test "z$(git config branch.myr18.remote)" = z && test "z$(git config branch.myr18.remote)" = z &&
test "z$(git config branch.myr18.merge)" = z && test "z$(git config branch.myr18.merge)" = z &&
test "z$(git config branch.myr18.rebase)" = z test "z$(git config branch.myr18.rebase)" = z
@ -1201,8 +1202,8 @@ test_expect_success 'autosetuprebase remote on an untracked remote branch' '
git config branch.autosetuprebase remote && git config branch.autosetuprebase remote &&
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --no-track myr19 local/master && git branch --no-track myr19 local/main &&
test "z$(git config branch.myr19.remote)" = z && test "z$(git config branch.myr19.remote)" = z &&
test "z$(git config branch.myr19.merge)" = z && test "z$(git config branch.myr19.merge)" = z &&
test "z$(git config branch.myr19.rebase)" = z test "z$(git config branch.myr19.rebase)" = z
@ -1212,8 +1213,8 @@ test_expect_success 'autosetuprebase always on an untracked remote branch' '
git config branch.autosetuprebase always && git config branch.autosetuprebase always &&
git config remote.local.url . && git config remote.local.url . &&
git config remote.local.fetch refs/heads/*:refs/remotes/local/* && git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
(git show-ref -q refs/remotes/local/master || git fetch local) && (git show-ref -q refs/remotes/local/main || git fetch local) &&
git branch --no-track myr20 local/master && git branch --no-track myr20 local/main &&
test "z$(git config branch.myr20.remote)" = z && test "z$(git config branch.myr20.remote)" = z &&
test "z$(git config branch.myr20.merge)" = z && test "z$(git config branch.myr20.merge)" = z &&
test "z$(git config branch.myr20.rebase)" = z test "z$(git config branch.myr20.rebase)" = z
@ -1221,7 +1222,7 @@ test_expect_success 'autosetuprebase always on an untracked remote branch' '
test_expect_success 'autosetuprebase always on detached HEAD' ' test_expect_success 'autosetuprebase always on detached HEAD' '
git config branch.autosetupmerge always && git config branch.autosetupmerge always &&
test_when_finished git checkout master && test_when_finished git checkout main &&
git checkout HEAD^0 && git checkout HEAD^0 &&
git branch my11 && git branch my11 &&
test -z "$(git config branch.my11.remote)" && test -z "$(git config branch.my11.remote)" &&
@ -1249,18 +1250,18 @@ test_expect_success 'attempt to delete a branch without base and unmerged to HEA
test_expect_success 'attempt to delete a branch merged to its base' ' test_expect_success 'attempt to delete a branch merged to its base' '
# we are on my9 which is the initial commit; traditionally # we are on my9 which is the initial commit; traditionally
# we would not have allowed deleting my8 that is not merged # we would not have allowed deleting my8 that is not merged
# to my9, but it is set to track master that already has my8 # to my9, but it is set to track main that already has my8
git config branch.my8.merge refs/heads/master && git config branch.my8.merge refs/heads/main &&
git branch -d my8 git branch -d my8
' '
test_expect_success 'attempt to delete a branch merged to its base' ' test_expect_success 'attempt to delete a branch merged to its base' '
git checkout master && git checkout main &&
echo Third >>A && echo Third >>A &&
git commit -m "Third commit" A && git commit -m "Third commit" A &&
git branch -t my10 my9 && git branch -t my10 my9 &&
git branch -f my10 HEAD^ && git branch -f my10 HEAD^ &&
# we are on master which is at the third commit, and my10 # we are on main which is at the third commit, and my10
# is behind us, so traditionally we would have allowed deleting # is behind us, so traditionally we would have allowed deleting
# it; but my10 is set to track my9 that is further behind. # it; but my10 is set to track my9 that is further behind.
test_must_fail git branch -d my10 test_must_fail git branch -d my10
@ -1287,7 +1288,7 @@ test_expect_success 'detect typo in branch name when using --edit-description' '
' '
test_expect_success 'refuse --edit-description on unborn branch for now' ' test_expect_success 'refuse --edit-description on unborn branch for now' '
test_when_finished "git checkout master" && test_when_finished "git checkout main" &&
write_script editor <<-\EOF && write_script editor <<-\EOF &&
echo "New contents" >"$1" echo "New contents" >"$1"
EOF EOF
@ -1301,18 +1302,18 @@ test_expect_success '--merged catches invalid object names' '
test_expect_success '--list during rebase' ' test_expect_success '--list during rebase' '
test_when_finished "reset_rebase" && test_when_finished "reset_rebase" &&
git checkout master && git checkout main &&
FAKE_LINES="1 edit 2" && FAKE_LINES="1 edit 2" &&
export FAKE_LINES && export FAKE_LINES &&
set_fake_editor && set_fake_editor &&
git rebase -i HEAD~2 && git rebase -i HEAD~2 &&
git branch --list >actual && git branch --list >actual &&
test_i18ngrep "rebasing master" actual test_i18ngrep "rebasing main" actual
' '
test_expect_success '--list during rebase from detached HEAD' ' test_expect_success '--list during rebase from detached HEAD' '
test_when_finished "reset_rebase && git checkout master" && test_when_finished "reset_rebase && git checkout main" &&
git checkout master^0 && git checkout main^0 &&
oid=$(git rev-parse --short HEAD) && oid=$(git rev-parse --short HEAD) &&
FAKE_LINES="1 edit 2" && FAKE_LINES="1 edit 2" &&
export FAKE_LINES && export FAKE_LINES &&
@ -1324,17 +1325,17 @@ test_expect_success '--list during rebase from detached HEAD' '
test_expect_success 'tracking with unexpected .fetch refspec' ' test_expect_success 'tracking with unexpected .fetch refspec' '
rm -rf a b c d && rm -rf a b c d &&
git init a && git init -b main a &&
( (
cd a && cd a &&
test_commit a test_commit a
) && ) &&
git init b && git init -b main b &&
( (
cd b && cd b &&
test_commit b test_commit b
) && ) &&
git init c && git init -b main c &&
( (
cd c && cd c &&
test_commit c && test_commit c &&
@ -1342,23 +1343,23 @@ test_expect_success 'tracking with unexpected .fetch refspec' '
git remote add b ../b && git remote add b ../b &&
git fetch --all git fetch --all
) && ) &&
git init d && git init -b main d &&
( (
cd d && cd d &&
git remote add c ../c && git remote add c ../c &&
git config remote.c.fetch "+refs/remotes/*:refs/remotes/*" && git config remote.c.fetch "+refs/remotes/*:refs/remotes/*" &&
git fetch c && git fetch c &&
git branch --track local/a/master remotes/a/master && git branch --track local/a/main remotes/a/main &&
test "$(git config branch.local/a/master.remote)" = "c" && test "$(git config branch.local/a/main.remote)" = "c" &&
test "$(git config branch.local/a/master.merge)" = "refs/remotes/a/master" && test "$(git config branch.local/a/main.merge)" = "refs/remotes/a/main" &&
git rev-parse --verify a >expect && git rev-parse --verify a >expect &&
git rev-parse --verify local/a/master >actual && git rev-parse --verify local/a/main >actual &&
test_cmp expect actual test_cmp expect actual
) )
' '
test_expect_success 'configured committerdate sort' ' test_expect_success 'configured committerdate sort' '
git init sort && git init -b main sort &&
( (
cd sort && cd sort &&
git config branch.sort committerdate && git config branch.sort committerdate &&
@ -1371,7 +1372,7 @@ test_expect_success 'configured committerdate sort' '
test_commit b && test_commit b &&
git branch >actual && git branch >actual &&
cat >expect <<-\EOF && cat >expect <<-\EOF &&
master main
a a
c c
* b * b
@ -1389,7 +1390,7 @@ test_expect_success 'option override configured sort' '
a a
* b * b
c c
master main
EOF EOF
test_cmp expect actual test_cmp expect actual
) )