]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t6[0-3]*: adjust the references to the default branch name "main"
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Wed, 18 Nov 2020 23:44:36 +0000 (23:44 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 19 Nov 2020 23:44:18 +0000 (15:44 -0800)
Carefully excluding t6300, which sees independent development elsewhere
at the time of writing, we use `main` as the default branch name in
t6[0-3]*. This trick was performed via

$ (cd t &&
   sed -i -e 's/master/main/g' -e 's/MASTER/MAIN/g' \
-e 's/Master/Main/g' -- t6[0-3]*.sh &&
   git checkout HEAD -- t6300\*)

This allows us to define `GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main`
for those tests.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
23 files changed:
t/t6000-rev-list-misc.sh
t/t6001-rev-list-graft.sh
t/t6004-rev-list-path-optim.sh
t/t6006-rev-list-format.sh
t/t6007-rev-list-cherry-pick-file.sh
t/t6008-rev-list-submodule.sh
t/t6009-rev-list-parent.sh
t/t6012-rev-list-simplify.sh
t/t6013-rev-list-reverse-parents.sh
t/t6016-rev-list-graph-simplify-history.sh
t/t6017-rev-list-stdin.sh
t/t6018-rev-list-glob.sh
t/t6019-rev-list-ancestry-path.sh
t/t6030-bisect-porcelain.sh
t/t6040-tracking-info.sh
t/t6050-replace.sh
t/t6101-rev-parse-parents.sh
t/t6110-rev-list-sparse.sh
t/t6111-rev-list-treesame.sh
t/t6112-rev-list-filters-objects.sh
t/t6120-describe.sh
t/t6200-fmt-merge-msg.sh
t/t6302-for-each-ref-filter.sh

index 664000adf0d093cf85ab390b5a461f34a428038d..12def7bcbf91949a90066b04cb0b9fddeb3f656d 100755 (executable)
@@ -2,7 +2,7 @@
 
 test_description='miscellaneous rev-list tests'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -88,7 +88,7 @@ test_expect_success 'propagate uninteresting flag down correctly' '
 '
 
 test_expect_success 'symleft flag bit is propagated down from tag' '
-       git log --format="%m %s" --left-right v1.0...master >actual &&
+       git log --format="%m %s" --left-right v1.0...main >actual &&
        cat >expect <<-\EOF &&
        < another
        < that
index 67c384f1e8218124e5791b8f4183cfc52c68036f..90d93f77fa79c2694ebd9b2229c8620859e6a36a 100755 (executable)
@@ -2,7 +2,7 @@
 
 test_description='Revision traversal vs grafts and path limiter'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -23,7 +23,7 @@ test_expect_success setup '
        git commit -a -m "Third in one history." &&
        A2=$(git rev-parse --verify HEAD) &&
 
-       rm -f .git/refs/heads/master .git/index &&
+       rm -f .git/refs/heads/main .git/index &&
 
        echo >fileA fileA again &&
        echo >subdir/fileB fileB again &&
index ff788199e3b54f21c7ddbacac0523f69226dac10..cd4f420e2a1e3919985a29d174055fab0f50c85f 100755 (executable)
@@ -4,7 +4,7 @@ test_description='git rev-list trivial path optimization test
 
    d/z1
    b0                             b1
-   o------------------------*----o master
+   o------------------------*----o main
   /                        /
  o---------o----o----o----o side
  a0        c0   c1   a1   c2
@@ -13,7 +13,7 @@ test_description='git rev-list trivial path optimization test
 
 '
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -58,18 +58,18 @@ test_expect_success 'further setup' '
        git add c &&
        test_tick &&
        git commit -m "Side makes yet another irrelevant commit" &&
-       git checkout master &&
+       git checkout main &&
        echo Another >b &&
        echo Munged >d/z &&
        git add b d/z &&
        test_tick &&
-       git commit -m "Master touches b" &&
-       git tag master_b0 &&
+       git commit -m "Main touches b" &&
+       git tag main_b0 &&
        git merge side &&
        echo Touched >b &&
        git add b &&
        test_tick &&
-       git commit -m "Master touches b again"
+       git commit -m "Main touches b again"
 '
 
 test_expect_success 'path optimization 2' '
@@ -79,13 +79,13 @@ test_expect_success 'path optimization 2' '
 '
 
 test_expect_success 'pathspec with leading path' '
-       git rev-parse master^ master_b0 side_c0 initial >expected &&
+       git rev-parse main^ main_b0 side_c0 initial >expected &&
        git rev-list HEAD -- d >actual &&
        test_cmp expected actual
 '
 
 test_expect_success 'pathspec with glob (1)' '
-       git rev-parse master^ master_b0 side_c0 initial >expected &&
+       git rev-parse main^ main_b0 side_c0 initial >expected &&
        git rev-list HEAD -- "d/*" >actual &&
        test_cmp expected actual
 '
index bbbd577f108c98c2de0dc05c5d654e0686919725..35a2f623925535fe889170ee10723df05bd62e9a 100755 (executable)
@@ -5,7 +5,7 @@
 
 test_description='git rev-list --pretty=format test'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -56,7 +56,7 @@ test_expect_success 'setup' '
 test_format () {
        cat >expect.$1
        test_expect_${3:-success} "format $1" "
-               git rev-list --pretty=format:'$2' master >output.$1 &&
+               git rev-list --pretty=format:'$2' main >output.$1 &&
                test_cmp expect.$1 output.$1
        "
 }
@@ -187,13 +187,13 @@ test_expect_success 'basic colors' '
        <RED>foo<GREEN>bar<BLUE>baz<RESET>xyzzy
        EOF
        format="%Credfoo%Cgreenbar%Cbluebaz%Cresetxyzzy" &&
-       git rev-list --color --format="$format" -1 master >actual.raw &&
+       git rev-list --color --format="$format" -1 main >actual.raw &&
        test_decode_color <actual.raw >actual &&
        test_cmp expect actual
 '
 
 test_expect_success '%S is not a placeholder for rev-list yet' '
-       git rev-list --format="%S" -1 master | grep "%S"
+       git rev-list --format="%S" -1 main | grep "%S"
 '
 
 test_expect_success 'advanced colors' '
@@ -202,7 +202,7 @@ test_expect_success 'advanced colors' '
        <BOLD;RED;BYELLOW>foo<RESET>
        EOF
        format="%C(red yellow bold)foo%C(reset)" &&
-       git rev-list --color --format="$format" -1 master >actual.raw &&
+       git rev-list --color --format="$format" -1 main >actual.raw &&
        test_decode_color <actual.raw >actual &&
        test_cmp expect actual
 '
@@ -409,7 +409,7 @@ test_expect_success '%x00 shows NUL' '
 
 test_expect_success '%ad respects --date=' '
        echo 2005-04-07 >expect.ad-short &&
-       git log -1 --date=short --pretty=tformat:%ad >output.ad-short master &&
+       git log -1 --date=short --pretty=tformat:%ad >output.ad-short main &&
        test_cmp expect.ad-short output.ad-short
 '
 
@@ -497,8 +497,8 @@ test_expect_success '"%h %gD: %gs" is same as git-reflog (with --abbrev)' '
 '
 
 test_expect_success '%gd shortens ref name' '
-       echo "master@{0}" >expect.gd-short &&
-       git log -g -1 --format=%gd refs/heads/master >actual.gd-short &&
+       echo "main@{0}" >expect.gd-short &&
+       git log -g -1 --format=%gd refs/heads/main >actual.gd-short &&
        test_cmp expect.gd-short actual.gd-short
 '
 
index 51547ac3a5969de97fecb7d0ad5c5cf0bc24c4aa..b22bf00598bf013a7bbc8a6069394e10469379fb 100755 (executable)
@@ -2,7 +2,7 @@
 
 test_description='test git rev-list --cherry-pick -- file'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -34,7 +34,7 @@ test_expect_success setup '
        test_tick &&
        git commit -m "E" &&
        git tag E &&
-       git checkout master &&
+       git checkout main &&
        git checkout branch foo &&
        test_tick &&
        git commit -m "B" &&
@@ -236,7 +236,7 @@ test_expect_success '--cherry-pick with independent, but identical branches' '
        test_tick &&
        git commit -m "independent, too" foo &&
        test -z "$(git rev-list --left-right --cherry-pick \
-               HEAD...master -- foo)"
+               HEAD...main -- foo)"
 '
 
 cat >expect <<EOF
index 871ace31e2a565a0b787fde22b32490530cba184..3153a0d891046421f53ea6543182c47ca750e07a 100755 (executable)
@@ -5,7 +5,7 @@
 
 test_description='git rev-list involving submodules that this repo has'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -39,7 +39,7 @@ test_expect_success 'setup' '
 '
 
 test_expect_success "Ilari's test" '
-       git rev-list --objects super master ^super^
+       git rev-list --objects super main ^super^
 '
 
 test_done
index 114f755d525c69fd4cc4b025419ccf7fb665f56b..63fa7c83130ba371913ac07db1f95d3e57991d35 100755 (executable)
@@ -2,7 +2,7 @@
 
 test_description='ancestor culling and limiting by parent number'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -48,7 +48,7 @@ test_expect_success 'setup roots, merges and octopuses' '
        test_commit seven &&
        git checkout -b yetanotherbranch four &&
        test_commit eight &&
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git merge --allow-unrelated-histories -m normalmerge newroot &&
        git tag normalmerge &&
@@ -59,7 +59,7 @@ test_expect_success 'setup roots, merges and octopuses' '
        test_tick &&
        git merge -m tetrapus sidebranch anotherbranch yetanotherbranch &&
        git tag tetrapus &&
-       git checkout master
+       git checkout main
 '
 
 test_expect_success 'rev-list roots' '
@@ -126,7 +126,7 @@ test_expect_success 'dodecapus' '
                roots="$roots root$i" ||
                return
        done &&
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git merge -m dodecapus $roots &&
        git tag dodecapus &&
index d163c24859fbbbc37cb37ebeea1746393fb2e9cc..4f7fa8b6c037bd45b2b4a6836609e35b820cbce6 100755 (executable)
@@ -2,7 +2,7 @@
 
 test_description='merge simplification'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -46,7 +46,7 @@ test_expect_success setup '
        git add side &&
        test_tick && git commit -m "Side root" &&
        note J &&
-       git checkout master &&
+       git checkout main &&
 
        echo "Hello" >file &&
        echo "second" >lost &&
@@ -68,7 +68,7 @@ test_expect_success setup '
        note D &&
 
        test_tick &&
-       test_must_fail git merge -m "merge" master &&
+       test_must_fail git merge -m "merge" main &&
        >lost && git commit -a -m "merge" &&
        note E &&
 
@@ -77,7 +77,7 @@ test_expect_success setup '
        test_tick && git commit -m "Irrelevant change" &&
        note F &&
 
-       git checkout master &&
+       git checkout main &&
        echo "Yet another" >elif &&
        git add elif &&
        test_tick && git commit -m "Another irrelevant change" &&
@@ -90,7 +90,7 @@ test_expect_success setup '
        test_tick && git commit -a -m "Final change" &&
        note I &&
 
-       git checkout master &&
+       git checkout main &&
        test_tick && git merge --allow-unrelated-histories -m "Coolest" unrelated &&
        note K &&
 
index 0298174956f4102db26bd0acd946f95c6379a2d6..39793cbbd661afe7fe9b9bab2302b023e4ef1d0a 100755 (executable)
@@ -2,7 +2,7 @@
 
 test_description='--reverse combines with --parents'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -21,24 +21,24 @@ test_expect_success 'set up --reverse example' '
        commit two &&
        git checkout -b side HEAD^ &&
        commit three &&
-       git checkout master &&
+       git checkout main &&
        git merge -s ours side &&
        commit five
        '
 
 test_expect_success '--reverse --parents --full-history combines correctly' '
-       git rev-list --parents --full-history master -- foo |
+       git rev-list --parents --full-history main -- foo |
                perl -e "print reverse <>" > expected &&
-       git rev-list --reverse --parents --full-history master -- foo \
+       git rev-list --reverse --parents --full-history main -- foo \
                > actual &&
        test_cmp expected actual
        '
 
 test_expect_success '--boundary does too' '
-       git rev-list --boundary --parents --full-history master ^root -- foo |
+       git rev-list --boundary --parents --full-history main ^root -- foo |
                perl -e "print reverse <>" > expected &&
        git rev-list --boundary --reverse --parents --full-history \
-               master ^root -- foo > actual &&
+               main ^root -- foo > actual &&
        test_cmp expected actual
        '
 
index 3fb7ee0be48afe2dff7a458b316d59983ea91475..6eddbbcc9f9303904f15a689a85e9c4a8b054a67 100755 (executable)
@@ -7,7 +7,7 @@
 
 test_description='--graph and simplified history'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -17,7 +17,7 @@ test_expect_success 'set up rev-list --graph test' '
        test_commit A1 foo.txt &&
        test_commit A2 bar.txt &&
        test_commit A3 bar.txt &&
-       git branch -m master A &&
+       git branch -m main A &&
 
        # 2 commits on branch B, started from A1
        git checkout -b B A1 &&
index e51fe7b9bc16e39b164901a6c5f047577f85ed86..05162512a09d422a9592a112a1d613d34be4f5ed 100755 (executable)
@@ -5,7 +5,7 @@
 
 test_description='log family learns --stdin'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -43,7 +43,7 @@ test_expect_success setup '
                done &&
                for i in $them
                do
-                       git checkout -b side-$i master~$i &&
+                       git checkout -b side-$i main~$i &&
                        echo updated $i >file-$i &&
                        git add file-$i &&
                        test_tick &&
@@ -52,7 +52,7 @@ test_expect_success setup '
        )
 '
 
-check master
+check main
 check side-1 ^side-4
 check side-1 ^side-7 --
 check side-1 ^side-7 -- file-1
@@ -69,11 +69,11 @@ test_expect_success 'not only --stdin' '
        file-2
        EOF
        cat >input <<-EOF &&
-       ^master^
+       ^main^
        --
        file-2
        EOF
-       git log --pretty=tformat:%s --name-only --stdin master -- file-1 \
+       git log --pretty=tformat:%s --name-only --stdin main -- file-1 \
                <input >actual &&
        test_cmp expect actual
 '
index 60a351c26a8bd99b749d43eee4aa6a40d9e2bd56..24b34add833468dd73136689980e4ca3a051411b 100755 (executable)
@@ -2,7 +2,7 @@
 
 test_description='rev-list/rev-parse --glob'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -23,22 +23,22 @@ compare () {
 
 test_expect_success 'setup' '
 
-       commit master &&
-       git checkout -b subspace/one master &&
+       commit main &&
+       git checkout -b subspace/one main &&
        commit one &&
-       git checkout -b subspace/two master &&
+       git checkout -b subspace/two main &&
        commit two &&
-       git checkout -b subspace-x master &&
+       git checkout -b subspace-x main &&
        commit subspace-x &&
-       git checkout -b other/three master &&
+       git checkout -b other/three main &&
        commit three &&
-       git checkout -b someref master &&
+       git checkout -b someref main &&
        commit some &&
-       git checkout master &&
+       git checkout main &&
        commit topic_2 &&
-       git tag foo/bar master &&
+       git tag foo/bar main &&
        commit topic_3 &&
-       git update-ref refs/remotes/foo/baz master &&
+       git update-ref refs/remotes/foo/baz main &&
        commit topic_4 &&
        git update-ref refs/remotes/upstream/one subspace/one &&
        git update-ref refs/remotes/upstream/two subspace/two &&
@@ -86,7 +86,7 @@ test_expect_failure 'rev-parse accepts --glob as detached option' '
 
 test_expect_failure 'rev-parse is not confused by option-like glob' '
 
-       compare rev-parse "master" "--glob --symbolic master"
+       compare rev-parse "main" "--glob --symbolic main"
 
 '
 
@@ -114,15 +114,15 @@ test_expect_success 'rev-parse --glob=heads/subspace/* --glob=heads/other/*' '
 
 '
 
-test_expect_success 'rev-parse --glob=heads/someref/* master' '
+test_expect_success 'rev-parse --glob=heads/someref/* main' '
 
-       compare rev-parse "master" "--glob=heads/someref/* master"
+       compare rev-parse "main" "--glob=heads/someref/* main"
 
 '
 
 test_expect_success 'rev-parse --glob=heads/*' '
 
-       compare rev-parse "master other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*"
+       compare rev-parse "main other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*"
 
 '
 
@@ -139,7 +139,7 @@ test_expect_success 'rev-parse --remotes=foo' '
 '
 
 test_expect_success 'rev-parse --exclude with --branches' '
-       compare rev-parse "--exclude=*/* --branches" "master someref subspace-x"
+       compare rev-parse "--exclude=*/* --branches" "main someref subspace-x"
 '
 
 test_expect_success 'rev-parse --exclude with --all' '
@@ -224,7 +224,7 @@ test_expect_success 'rev-list --glob refs/heads/subspace/*' '
 
 test_expect_success 'rev-list not confused by option-like --glob arg' '
 
-       compare rev-list "master" "--glob -0 master"
+       compare rev-list "main" "--glob -0 main"
 
 '
 
@@ -272,13 +272,13 @@ test_expect_success 'rev-list --branches=subspace' '
 
 test_expect_success 'rev-list --branches' '
 
-       compare rev-list "master subspace-x someref other/three subspace/one subspace/two" "--branches"
+       compare rev-list "main subspace-x someref other/three subspace/one subspace/two" "--branches"
 
 '
 
-test_expect_success 'rev-list --glob=heads/someref/* master' '
+test_expect_success 'rev-list --glob=heads/someref/* main' '
 
-       compare rev-list "master" "--glob=heads/someref/* master"
+       compare rev-list "main" "--glob=heads/someref/* main"
 
 '
 
@@ -290,7 +290,7 @@ test_expect_success 'rev-list --glob=heads/subspace/* --glob=heads/other/*' '
 
 test_expect_success 'rev-list --glob=heads/*' '
 
-       compare rev-list "master other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*"
+       compare rev-list "main other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*"
 
 '
 
@@ -313,7 +313,7 @@ test_expect_success 'rev-list --remotes=foo' '
 '
 
 test_expect_success 'rev-list --exclude with --branches' '
-       compare rev-list "--exclude=*/* --branches" "master someref subspace-x"
+       compare rev-list "--exclude=*/* --branches" "main someref subspace-x"
 '
 
 test_expect_success 'rev-list --exclude with --all' '
@@ -357,13 +357,13 @@ test_expect_success 'shortlog accepts --glob/--tags/--remotes' '
 
        compare shortlog "subspace/one subspace/two" --branches=subspace &&
        compare shortlog \
-         "master subspace-x someref other/three subspace/one subspace/two" \
+         "main subspace-x someref other/three subspace/one subspace/two" \
          --branches &&
-       compare shortlog master "--glob=heads/someref/* master" &&
+       compare shortlog main "--glob=heads/someref/* main" &&
        compare shortlog "subspace/one subspace/two other/three" \
          "--glob=heads/subspace/* --glob=heads/other/*" &&
        compare shortlog \
-         "master other/three someref subspace-x subspace/one subspace/two" \
+         "main other/three someref subspace-x subspace/one subspace/two" \
          "--glob=heads/*" &&
        compare shortlog foo/bar --tags=foo &&
        compare shortlog "foo/bar qux/one qux/two qux/x" --tags &&
@@ -374,14 +374,14 @@ test_expect_success 'shortlog accepts --glob/--tags/--remotes' '
 test_expect_failure 'shortlog accepts --glob as detached option' '
 
        compare shortlog \
-         "master other/three someref subspace-x subspace/one subspace/two" \
+         "main other/three someref subspace-x subspace/one subspace/two" \
          "--glob heads/*"
 
 '
 
 test_expect_failure 'shortlog --glob is not confused by option-like argument' '
 
-       compare shortlog master "--glob -e master"
+       compare shortlog main "--glob -e main"
 
 '
 
index aeb7defaa31bf9213c838a8290702354ce8d13db..20adbece6588a70ab72ac44825e8f359bdcff014 100755 (executable)
@@ -21,7 +21,7 @@ test_description='--ancestry-path'
 #  --ancestry-path G..M -- G.t == L
 #  --ancestry-path --simplify-merges G^..M -- G.t == G L
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -131,15 +131,15 @@ test_expect_success 'setup criss-cross' '
        (cd criss-cross &&
         git init &&
         test_commit A &&
-        git checkout -b xb master &&
+        git checkout -b xb main &&
         test_commit B &&
-        git checkout -b xc master &&
+        git checkout -b xc main &&
         test_commit C &&
         git checkout -b xbc xb -- &&
         git merge xc &&
         git checkout -b xcb xc -- &&
         git merge xb &&
-        git checkout master)
+        git checkout main)
 '
 
 # no commits in bc descend from cb
index 7dc65c73cd1882d2660df760a5a2c80307ddee55..f954f0e669d13f2a6a429633234d847be33dfb47 100755 (executable)
@@ -6,7 +6,7 @@ test_description='Tests git bisect functionality'
 
 exec </dev/null
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -92,9 +92,9 @@ test_expect_success 'bisect start without -- takes unknown arg as pathspec' '
        grep bar ".git/BISECT_NAMES"
 '
 
-test_expect_success 'bisect reset: back in the master branch' '
+test_expect_success 'bisect reset: back in the main branch' '
        git bisect reset &&
-       echo "* master" > branch.expect &&
+       echo "* main" > branch.expect &&
        git branch > branch.output &&
        cmp branch.expect branch.output
 '
@@ -105,7 +105,7 @@ test_expect_success 'bisect reset: back in another branch' '
        git bisect good $HASH1 &&
        git bisect bad $HASH3 &&
        git bisect reset &&
-       echo "  master" > branch.expect &&
+       echo "  main" > branch.expect &&
        echo "* other" >> branch.expect &&
        git branch > branch.output &&
        cmp branch.expect branch.output
@@ -351,7 +351,7 @@ test_expect_success 'bisect skip many ranges' '
 
 test_expect_success 'bisect starting with a detached HEAD' '
        git bisect reset &&
-       git checkout master^ &&
+       git checkout main^ &&
        HEAD=$(git rev-parse --verify HEAD) &&
        git bisect start &&
        test $HEAD = $(cat .git/BISECT_START) &&
@@ -719,7 +719,7 @@ test_expect_success 'bisect: --no-checkout - target after breakage' '
 test_expect_success 'bisect: demonstrate identification of damage boundary' "
        git bisect reset &&
        git checkout broken &&
-       git bisect start broken master --no-checkout &&
+       git bisect start broken main --no-checkout &&
        test_must_fail git bisect run \"\$SHELL_PATH\" -c '
                GOOD=\$(git for-each-ref \"--format=%(objectname)\" refs/bisect/good-*) &&
                git rev-list --objects BISECT_HEAD --not \$GOOD >tmp.\$\$ &&
index bc95ff6f54cc4fc24140a1f1569e0d011026007e..a160b2bf99c41c3b30dcd26ebae0a78f6a96b3f8 100755 (executable)
@@ -2,7 +2,7 @@
 
 test_description='remote tracking stats'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -37,7 +37,7 @@ test_expect_success setup '
                git branch -d brokenbase &&
                git checkout -b b6 origin
        ) &&
-       git checkout -b follower --track master &&
+       git checkout -b follower --track main &&
        advance h
 '
 
@@ -61,12 +61,12 @@ test_expect_success 'branch -v' '
 '
 
 cat >expect <<\EOF
-b1 [origin/master: ahead 1, behind 1] d
-b2 [origin/master: ahead 1, behind 1] d
-b3 [origin/master: behind 1] b
-b4 [origin/master: ahead 2] f
+b1 [origin/main: ahead 1, behind 1] d
+b2 [origin/main: ahead 1, behind 1] d
+b3 [origin/main: behind 1] b
+b4 [origin/main: ahead 2] f
 b5 [brokenbase: gone] g
-b6 [origin/master] c
+b6 [origin/main] c
 EOF
 
 test_expect_success 'branch -vv' '
@@ -86,7 +86,7 @@ test_expect_success 'checkout (diverged from upstream)' '
 '
 
 test_expect_success 'checkout with local tracked branch' '
-       git checkout master &&
+       git checkout main &&
        git checkout follower >actual &&
        test_i18ngrep "is ahead of" actual
 '
@@ -103,7 +103,7 @@ test_expect_success 'checkout (up-to-date with upstream)' '
        (
                cd test && git checkout b6
        ) >actual &&
-       test_i18ngrep "Your branch is up to date with .origin/master" actual
+       test_i18ngrep "Your branch is up to date with .origin/main" actual
 '
 
 test_expect_success 'status (diverged from upstream)' '
@@ -133,11 +133,11 @@ test_expect_success 'status (up-to-date with upstream)' '
                # reports nothing to commit
                test_must_fail git commit --dry-run
        ) >actual &&
-       test_i18ngrep "Your branch is up to date with .origin/master" actual
+       test_i18ngrep "Your branch is up to date with .origin/main" actual
 '
 
 cat >expect <<\EOF
-## b1...origin/master [ahead 1, behind 1]
+## b1...origin/main [ahead 1, behind 1]
 EOF
 
 test_expect_success 'status -s -b (diverged from upstream)' '
@@ -150,7 +150,7 @@ test_expect_success 'status -s -b (diverged from upstream)' '
 '
 
 cat >expect <<\EOF
-## b1...origin/master [different]
+## b1...origin/main [different]
 EOF
 
 test_expect_success 'status -s -b --no-ahead-behind (diverged from upstream)' '
@@ -163,7 +163,7 @@ test_expect_success 'status -s -b --no-ahead-behind (diverged from upstream)' '
 '
 
 cat >expect <<\EOF
-## b1...origin/master [different]
+## b1...origin/main [different]
 EOF
 
 test_expect_success 'status.aheadbehind=false status -s -b (diverged from upstream)' '
@@ -177,7 +177,7 @@ test_expect_success 'status.aheadbehind=false status -s -b (diverged from upstre
 
 cat >expect <<\EOF
 On branch b1
-Your branch and 'origin/master' have diverged,
+Your branch and 'origin/main' have diverged,
 and have 1 and 1 different commits each, respectively.
 EOF
 
@@ -201,7 +201,7 @@ test_expect_success 'status --long --branch' '
 
 cat >expect <<\EOF
 On branch b1
-Your branch and 'origin/master' refer to different commits.
+Your branch and 'origin/main' refer to different commits.
 EOF
 
 test_expect_success 'status --long --branch --no-ahead-behind' '
@@ -236,7 +236,7 @@ test_expect_success 'status -s -b (upstream is gone)' '
 '
 
 cat >expect <<\EOF
-## b6...origin/master
+## b6...origin/main
 EOF
 
 test_expect_success 'status -s -b (up-to-date with upstream)' '
@@ -249,7 +249,7 @@ test_expect_success 'status -s -b (up-to-date with upstream)' '
 '
 
 test_expect_success 'fail to track lightweight tags' '
-       git checkout master &&
+       git checkout main &&
        git tag light &&
        test_must_fail git branch --track lighttrack light >actual &&
        test_i18ngrep ! "set up to track" actual &&
@@ -257,7 +257,7 @@ test_expect_success 'fail to track lightweight tags' '
 '
 
 test_expect_success 'fail to track annotated tags' '
-       git checkout master &&
+       git checkout main &&
        git tag -m heavy heavy &&
        test_must_fail git branch --track heavytrack heavy >actual &&
        test_i18ngrep ! "set up to track" actual &&
@@ -265,17 +265,17 @@ test_expect_success 'fail to track annotated tags' '
 '
 
 test_expect_success '--set-upstream-to does not change branch' '
-       git branch from-master master &&
-       git branch --set-upstream-to master from-master &&
-       git branch from-topic_2 master &&
+       git branch from-main main &&
+       git branch --set-upstream-to main from-main &&
+       git branch from-topic_2 main &&
        test_must_fail git config branch.from-topic_2.merge > actual &&
        git rev-list from-topic_2 &&
        git update-ref refs/heads/from-topic_2 from-topic_2^ &&
        git rev-parse from-topic_2 >expect2 &&
-       git branch --set-upstream-to master from-topic_2 &&
-       git config branch.from-master.merge > actual &&
+       git branch --set-upstream-to main from-topic_2 &&
+       git config branch.from-main.merge > actual &&
        git rev-parse from-topic_2 >actual2 &&
-       grep -q "^refs/heads/master$" actual &&
+       grep -q "^refs/heads/main$" actual &&
        cmp expect2 actual2
 '
 
@@ -283,11 +283,11 @@ test_expect_success '--set-upstream-to @{-1}' '
        git checkout follower &&
        git checkout from-topic_2 &&
        git config branch.from-topic_2.merge > expect2 &&
-       git branch --set-upstream-to @{-1} from-master &&
-       git config branch.from-master.merge > actual &&
+       git branch --set-upstream-to @{-1} from-main &&
+       git config branch.from-main.merge > actual &&
        git config branch.from-topic_2.merge > actual2 &&
-       git branch --set-upstream-to follower from-master &&
-       git config branch.from-master.merge > expect &&
+       git branch --set-upstream-to follower from-main &&
+       git config branch.from-main.merge > expect &&
        test_cmp expect2 actual2 &&
        test_cmp expect actual
 '
index 0a53462a614f66c29ec861aa30521f3ed9a30707..93c08b19998acc61a8e8fa66ccd23883d6b1e55b 100755 (executable)
@@ -4,7 +4,7 @@
 #
 test_description='Tests replace refs functionality'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -136,9 +136,9 @@ test_expect_success 'tag replaced commit' '
 '
 
 test_expect_success '"git fsck" works' '
-     git fsck master >fsck_master.out &&
-     test_i18ngrep "dangling commit $R" fsck_master.out &&
-     test_i18ngrep "dangling tag $(git show-ref -s refs/tags/mytag)" fsck_master.out &&
+     git fsck main >fsck_main.out &&
+     test_i18ngrep "dangling commit $R" fsck_main.out &&
+     test_i18ngrep "dangling tag $(git show-ref -s refs/tags/mytag)" fsck_main.out &&
      test -z "$(git fsck)"
 '
 
@@ -221,7 +221,7 @@ test_expect_success 'create parallel branch without the bug' '
      git cherry-pick $HASH6 &&
      PARA6=$(git rev-parse --verify HEAD) &&
      git replace $HASH6 $PARA6 &&
-     git checkout master &&
+     git checkout main &&
      cur=$(git rev-parse --verify HEAD) &&
      test "$cur" = "$HASH7" &&
      git log --pretty=oneline | grep $PARA2 &&
@@ -464,7 +464,7 @@ test_expect_success GPG 'set up a merge commit with a mergetag' '
        git commit -m "hello: 2 more lines from a test branch" &&
        HASH9=$(git rev-parse --verify HEAD) &&
        git tag -s -m "tag for testing with a mergetag" test_tag HEAD &&
-       git checkout master &&
+       git checkout main &&
        git merge -s ours test_tag &&
        HASH10=$(git rev-parse --verify HEAD) &&
        git cat-file commit $HASH10 | grep "^mergetag object"
index 19a56f4a4df38f9e4fe89ca79befc095cf5dbf0b..78b585178051615a3712b58d1f87192aa678fb7f 100755 (executable)
@@ -5,7 +5,7 @@
 
 test_description='Test git rev-parse with different parent options'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -21,7 +21,7 @@ test_expect_success 'setup' '
        test_commit second &&
        git checkout --orphan tmp &&
        test_commit start2 &&
-       git checkout master &&
+       git checkout main &&
        git merge -m next --allow-unrelated-histories start2 &&
        test_commit final &&
 
index 69411862d6fab7a866b8e3d4dbe4cf1f18646297..13c1da5352836758cb0806d0f969f2aac4c8f7c9 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 test_description='operations that cull histories in unusual ways'
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -13,7 +13,7 @@ test_expect_success setup '
        git checkout -b side HEAD^ &&
        test_commit D &&
        test_commit E &&
-       git merge master
+       git merge main
 '
 
 test_expect_success 'rev-list --first-parent --boundary' '
index 58b8d42bf3d1c06a6469ae7fafd5eaaae86b0795..e07b6070e0e7a546118c2f4744b9ab4e9faeff9a 100755 (executable)
@@ -13,7 +13,7 @@
 
 test_description='TREESAME and limiting'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -36,13 +36,13 @@ test_expect_success setup '
        git checkout other-branch &&
        test_commit "Added other" other "Hello" C &&
 
-       git checkout master &&
+       git checkout main &&
        test_merge D other-branch &&
 
        git checkout third-branch &&
        test_commit "Third file" third "Nothing" E &&
 
-       git checkout master &&
+       git checkout main &&
        test_commit "file=Blah" file "Blah" F &&
 
        test_tick && git merge --no-commit third-branch &&
@@ -59,7 +59,7 @@ test_expect_success setup '
 
        test_tick && git revert I && note J &&
 
-       git checkout master &&
+       git checkout main &&
        test_tick && git merge --no-ff fiddler-branch &&
        note K &&
 
index 5f39c3adb35f9bdaff1252d178ac71286c67a431..31457d13b9a0af27fbf0c08402d395be8a540c65 100755 (executable)
@@ -2,7 +2,7 @@
 
 test_description='git rev-list using object filtering'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -226,7 +226,7 @@ test_expect_success 'verify sparse:oid=oid-ish omits top-level files' '
        sort >expected &&
 
        git -C r3 rev-list --quiet --objects --filter-print-omitted \
-               --filter=sparse:oid=master:pattern HEAD >revs &&
+               --filter=sparse:oid=main:pattern HEAD >revs &&
        awk -f print_1.awk revs |
        sed "s/~//" |
        sort >observed &&
@@ -439,7 +439,7 @@ test_expect_success 'add sparse pattern blobs whose paths have reserved chars' '
 
 test_expect_success 'combine:... with more than two sub-filters' '
        git -C r3 rev-list --objects \
-               --filter=combine:tree:3+blob:limit=40+sparse:oid=master:pattern \
+               --filter=combine:tree:3+blob:limit=40+sparse:oid=main:pattern \
                HEAD >actual &&
 
        expect_has HEAD "" &&
@@ -457,7 +457,7 @@ test_expect_success 'combine:... with more than two sub-filters' '
        cp actual expect &&
 
        git -C r3 rev-list --objects \
-               --filter=combine:tree:3+blob:limit=40+sparse:oid=master:pattern1%2brenamed%25 \
+               --filter=combine:tree:3+blob:limit=40+sparse:oid=main:pattern1%2brenamed%25 \
                HEAD >actual &&
        test_cmp expect actual &&
 
@@ -467,23 +467,23 @@ test_expect_success 'combine:... with more than two sub-filters' '
        test_when_finished "rm -f trace1" &&
        GIT_TRACE=$(pwd)/trace1 git -C r3 rev-list --objects \
                --filter=tree:3 --filter=blob:limit=40 \
-               --filter=sparse:oid="master:p;at%ter+n" \
+               --filter=sparse:oid="main:p;at%ter+n" \
                HEAD >actual &&
 
        test_cmp expect actual &&
-       grep "Add to combine filter-spec: sparse:oid=master:p%3bat%25ter%2bn" \
+       grep "Add to combine filter-spec: sparse:oid=main:p%3bat%25ter%2bn" \
                trace1 &&
 
        # Repeat the above test, but this time, the characters to encode are in
        # the LHS of the combined filter.
        test_when_finished "rm -f trace2" &&
        GIT_TRACE=$(pwd)/trace2 git -C r3 rev-list --objects \
-               --filter=sparse:oid=master:^~pattern \
+               --filter=sparse:oid=main:^~pattern \
                --filter=tree:3 --filter=blob:limit=40 \
                HEAD >actual &&
 
        test_cmp expect actual &&
-       grep "Add to combine filter-spec: sparse:oid=master:%5e%7epattern" \
+       grep "Add to combine filter-spec: sparse:oid=main:%5e%7epattern" \
                trace2
 '
 
index 360e65d3b985f2c17fc051a723aa3f014758f630..546796f84732c5153444321dc5a1d34bbf8af878 100755 (executable)
@@ -11,7 +11,7 @@ test_description='test describe'
 #
 # First parent of a merge commit is on the same line, second parent below.
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -105,7 +105,7 @@ check_describe c-* --tags HEAD^^2
 check_describe B --tags HEAD^^2^
 check_describe e --tags HEAD^^^
 
-check_describe heads/master --all HEAD
+check_describe heads/main --all HEAD
 check_describe tags/c-* --all HEAD^
 check_describe tags/e --all HEAD^^^
 
@@ -406,15 +406,15 @@ test_expect_success ULIMIT_STACK_SIZE 'name-rev works in a deep repo' '
        i=1 &&
        while test $i -lt 8000
        do
-               echo "commit refs/heads/master
+               echo "commit refs/heads/main
 committer A U Thor <author@example.com> $((1000000000 + $i * 100)) +0200
 data <<EOF
 commit #$i
 EOF"
-               test $i = 1 && echo "from refs/heads/master^0"
+               test $i = 1 && echo "from refs/heads/main^0"
                i=$(($i + 1))
        done | git fast-import &&
-       git checkout master &&
+       git checkout main &&
        git tag far-far-away HEAD^ &&
        echo "HEAD~4000 tags/far-far-away~3999" >expect &&
        git name-rev HEAD~4000 >actual &&
@@ -445,7 +445,7 @@ test_expect_success 'describe complains about missing object' '
 '
 
 test_expect_success 'name-rev a rev shortly after epoch' '
-       test_when_finished "git checkout master" &&
+       test_when_finished "git checkout main" &&
 
        git checkout --orphan no-timestamp-underflow &&
        # Any date closer to epoch than the CUTOFF_DATE_SLOP constant
@@ -459,7 +459,7 @@ test_expect_success 'name-rev a rev shortly after epoch' '
        test_cmp expect actual
 '
 
-# A--------------master
+# A--------------main
 #  \            /
 #   \----------M2
 #    \        /
@@ -490,10 +490,10 @@ test_expect_success 'name-rev covers all conditions while looking at parents' '
                git checkout $A &&
                git merge --no-ff HEAD@{1} && # M2
 
-               git checkout master &&
+               git checkout main &&
                git merge --no-ff HEAD@{1} &&
 
-               echo "$B master^2^2~1^2" >expect &&
+               echo "$B main^2^2~1^2" >expect &&
                git name-rev $B >actual &&
 
                test_cmp expect actual
@@ -519,7 +519,7 @@ test_expect_success 'describe commits with disjoint bases' '
                git checkout --orphan branch && rm file &&
                echo B > file2 && git add file2 && git commit -m B &&
                git tag B -a -m B &&
-               git merge --no-ff --allow-unrelated-histories master -m x &&
+               git merge --no-ff --allow-unrelated-histories main -m x &&
 
                check_describe "A-3-*" HEAD
        )
@@ -545,7 +545,7 @@ test_expect_success 'describe commits with disjoint bases 2' '
                echo o >> file2 && git add file2 && GIT_COMMITTER_DATE="2020-01-01 15:01" git commit -m o &&
                echo B >> file2 && git add file2 && GIT_COMMITTER_DATE="2020-01-01 15:02" git commit -m B &&
                git tag B -a -m B &&
-               git merge --no-ff --allow-unrelated-histories master -m x &&
+               git merge --no-ff --allow-unrelated-histories main -m x &&
 
                check_describe "B-3-*" HEAD
        )
index 725b356d1e5fbfda4b25da96d67c8e83b8ed30fc..44f55d93fefbc766feca7e264df9319f7591feb9 100755 (executable)
@@ -5,7 +5,7 @@
 
 test_description='fmt-merge-msg test'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -84,7 +84,7 @@ test_expect_success GPG 'set up a signed tag' '
 test_expect_success 'message for merging local branch' '
        echo "Merge branch ${apos}left${apos}" >expected &&
 
-       git checkout master &&
+       git checkout main &&
        git fetch . left &&
 
        git fmt-merge-msg <.git/FETCH_HEAD >actual &&
@@ -92,7 +92,7 @@ test_expect_success 'message for merging local branch' '
 '
 
 test_expect_success GPG 'message for merging local tag signed by good key' '
-       git checkout master &&
+       git checkout main &&
        git fetch . signed-good-tag &&
        git fmt-merge-msg <.git/FETCH_HEAD >actual 2>&1 &&
        grep "^Merge tag ${apos}signed-good-tag${apos}" actual &&
@@ -101,7 +101,7 @@ test_expect_success GPG 'message for merging local tag signed by good key' '
 '
 
 test_expect_success GPG 'message for merging local tag signed by unknown key' '
-       git checkout master &&
+       git checkout main &&
        git fetch . signed-good-tag &&
        GNUPGHOME=. git fmt-merge-msg <.git/FETCH_HEAD >actual 2>&1 &&
        grep "^Merge tag ${apos}signed-good-tag${apos}" actual &&
@@ -112,7 +112,7 @@ test_expect_success GPG 'message for merging local tag signed by unknown key' '
 test_expect_success 'message for merging external branch' '
        echo "Merge branch ${apos}left${apos} of $(pwd)" >expected &&
 
-       git checkout master &&
+       git checkout main &&
        git fetch "$(pwd)" left &&
 
        git fmt-merge-msg <.git/FETCH_HEAD >actual &&
@@ -136,7 +136,7 @@ test_expect_success '[merge] summary/log configuration' '
        test_config merge.log true &&
        test_unconfig merge.summary &&
 
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . left &&
 
@@ -145,7 +145,7 @@ test_expect_success '[merge] summary/log configuration' '
        test_unconfig merge.log &&
        test_config merge.summary true &&
 
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . left &&
 
@@ -156,7 +156,7 @@ test_expect_success '[merge] summary/log configuration' '
 '
 
 test_expect_success 'setup FETCH_HEAD' '
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . left
 '
@@ -284,7 +284,7 @@ test_expect_success 'fmt-merge-msg -m' '
 
        test_unconfig merge.log &&
        test_unconfig merge.summary &&
-       git checkout master &&
+       git checkout main &&
        git fetch "$(pwd)" left &&
        git fmt-merge-msg -m "Sync with left" <.git/FETCH_HEAD >actual &&
        git fmt-merge-msg --log -m "Sync with left" \
@@ -326,28 +326,28 @@ test_expect_success 'setup: expected shortlog for two branches' '
 test_expect_success 'shortlog for two branches' '
        test_config merge.log true &&
        test_unconfig merge.summary &&
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . left right &&
        git fmt-merge-msg <.git/FETCH_HEAD >actual1 &&
 
        test_unconfig merge.log &&
        test_config merge.summary true &&
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . left right &&
        git fmt-merge-msg <.git/FETCH_HEAD >actual2 &&
 
        test_config merge.log yes &&
        test_unconfig merge.summary &&
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . left right &&
        git fmt-merge-msg <.git/FETCH_HEAD >actual3 &&
 
        test_unconfig merge.log &&
        test_config merge.summary yes &&
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . left right &&
        git fmt-merge-msg <.git/FETCH_HEAD >actual4 &&
@@ -361,7 +361,7 @@ test_expect_success 'shortlog for two branches' '
 test_expect_success 'merge-msg -F' '
        test_unconfig merge.log &&
        test_config merge.summary yes &&
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . left right &&
        git fmt-merge-msg -F .git/FETCH_HEAD >actual &&
@@ -371,7 +371,7 @@ test_expect_success 'merge-msg -F' '
 test_expect_success 'merge-msg -F in subdirectory' '
        test_unconfig merge.log &&
        test_config merge.summary yes &&
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . left right &&
        mkdir sub &&
@@ -411,7 +411,7 @@ test_expect_success 'merge-msg tag' '
        test_unconfig merge.log &&
        test_config merge.summary yes &&
 
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . tag tag-r3 &&
 
@@ -441,7 +441,7 @@ test_expect_success 'merge-msg two tags' '
        test_unconfig merge.log &&
        test_config merge.summary yes &&
 
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . tag tag-r3 tag tag-l5 &&
 
@@ -471,7 +471,7 @@ test_expect_success 'merge-msg tag and branch' '
        test_unconfig merge.log &&
        test_config merge.summary yes &&
 
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . tag tag-r3 left &&
 
@@ -498,7 +498,7 @@ test_expect_success 'merge-msg lots of commits' '
 
        test_config merge.summary yes &&
 
-       git checkout master &&
+       git checkout main &&
        test_tick &&
        git fetch . long &&
 
@@ -509,11 +509,11 @@ test_expect_success 'merge-msg lots of commits' '
 test_expect_success 'merge-msg with "merging" an annotated tag' '
        test_config merge.log true &&
 
-       git checkout master^0 &&
+       git checkout main^0 &&
        git commit --allow-empty -m "One step ahead" &&
        git tag -a -m "An annotated one" annote HEAD &&
 
-       git checkout master &&
+       git checkout main &&
        git fetch . annote &&
 
        git fmt-merge-msg <.git/FETCH_HEAD >actual &&
@@ -546,23 +546,23 @@ test_expect_success 'merge-msg with "merging" an annotated tag' '
 '
 
 test_expect_success 'merge.suppressDest configuration' '
-       git checkout -B side master &&
+       git checkout -B side main &&
        git commit --allow-empty -m "One step ahead" &&
-       git checkout master &&
+       git checkout main &&
        git fetch . side &&
 
        git -c merge.suppressDest="" fmt-merge-msg <.git/FETCH_HEAD >full.1 &&
        head -n1 full.1 >actual &&
-       grep -e "Merge branch .side. into master" actual &&
+       grep -e "Merge branch .side. into main" actual &&
 
        git -c merge.suppressDest="mast" fmt-merge-msg <.git/FETCH_HEAD >full.2 &&
        head -n1 full.2 >actual &&
-       grep -e "Merge branch .side. into master$" actual &&
+       grep -e "Merge branch .side. into main$" actual &&
 
        git -c merge.suppressDest="ma?*[rn]" fmt-merge-msg <.git/FETCH_HEAD >full.3 &&
        head -n1 full.3 >actual &&
        grep -e "Merge branch .side." actual &&
-       ! grep -e " into master$" actual
+       ! grep -e " into main$" actual
 '
 
 test_done
index 0f3e6aa0119ba141443d5260421d7270ea68c6b7..e5833af5286965834b31fd95fdc89240ef37211e 100755 (executable)
@@ -2,7 +2,7 @@
 
 test_description='test for-each-refs usage of ref-filter APIs'
 
-GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
+GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
 . ./test-lib.sh
@@ -29,17 +29,17 @@ test_expect_success 'setup some history and refs' '
        git tag $sign -m "A signed tag" signed-tag &&
        git tag $sign -m "Signed doubly" doubly-signed-tag signed-tag &&
 
-       git checkout master &&
-       git update-ref refs/odd/spot master
+       git checkout main &&
+       git update-ref refs/odd/spot main
 '
 
 test_expect_success 'filtering with --points-at' '
        cat >expect <<-\EOF &&
-       refs/heads/master
+       refs/heads/main
        refs/odd/spot
        refs/tags/three
        EOF
-       git for-each-ref --format="%(refname)" --points-at=master >actual &&
+       git for-each-ref --format="%(refname)" --points-at=main >actual &&
        test_cmp expect actual
 '
 
@@ -56,13 +56,13 @@ test_expect_success 'check signed tags with --points-at' '
 
 test_expect_success 'filtering with --merged' '
        cat >expect <<-\EOF &&
-       refs/heads/master
+       refs/heads/main
        refs/odd/spot
        refs/tags/one
        refs/tags/three
        refs/tags/two
        EOF
-       git for-each-ref --format="%(refname)" --merged=master >actual &&
+       git for-each-ref --format="%(refname)" --merged=main >actual &&
        test_cmp expect actual
 '
 
@@ -75,13 +75,13 @@ test_expect_success 'filtering with --no-merged' '
        refs/tags/four
        refs/tags/signed-tag
        EOF
-       git for-each-ref --format="%(refname)" --no-merged=master >actual &&
+       git for-each-ref --format="%(refname)" --no-merged=main >actual &&
        test_cmp expect actual
 '
 
 test_expect_success 'filtering with --contains' '
        cat >expect <<-\EOF &&
-       refs/heads/master
+       refs/heads/main
        refs/heads/side
        refs/odd/spot
        refs/tags/annotated-tag
@@ -254,7 +254,7 @@ test_expect_success PREPARE_FOR_MAIN_BRANCH 'nested alignment with quote formatt
 
 test_expect_success 'check `%(contents:lines=1)`' '
        cat >expect <<-\EOF &&
-       master |three
+       main |three
        side |four
        odd/spot |three
        annotated-tag |An annotated tag
@@ -272,7 +272,7 @@ test_expect_success 'check `%(contents:lines=1)`' '
 
 test_expect_success 'check `%(contents:lines=0)`' '
        cat >expect <<-\EOF &&
-       master |
+       main |
        side |
        odd/spot |
        annotated-tag |
@@ -290,7 +290,7 @@ test_expect_success 'check `%(contents:lines=0)`' '
 
 test_expect_success 'check `%(contents:lines=99999)`' '
        cat >expect <<-\EOF &&
-       master |three
+       main |three
        side |four
        odd/spot |three
        annotated-tag |An annotated tag
@@ -363,7 +363,7 @@ test_expect_success 'improper usage of %(if), %(then), %(else) and %(end) atoms'
 test_expect_success 'check %(if)...%(then)...%(end) atoms' '
        git for-each-ref --format="%(refname)%(if)%(authorname)%(then) Author: %(authorname)%(end)" >actual &&
        cat >expect <<-\EOF &&
-       refs/heads/master Author: A U Thor
+       refs/heads/main Author: A U Thor
        refs/heads/side Author: A U Thor
        refs/odd/spot Author: A U Thor
        refs/tags/annotated-tag
@@ -384,7 +384,7 @@ test_expect_success 'check %(if)...%(then)...%(end) atoms' '
 test_expect_success 'check %(if)...%(then)...%(else)...%(end) atoms' '
        git for-each-ref --format="%(if)%(authorname)%(then)%(authorname)%(else)No author%(end): %(refname)" >actual &&
        cat >expect <<-\EOF &&
-       A U Thor: refs/heads/master
+       A U Thor: refs/heads/main
        A U Thor: refs/heads/side
        A U Thor: refs/odd/spot
        No author: refs/tags/annotated-tag
@@ -404,7 +404,7 @@ test_expect_success 'check %(if)...%(then)...%(else)...%(end) atoms' '
 test_expect_success 'ignore spaces in %(if) atom usage' '
        git for-each-ref --format="%(refname:short): %(if)%(HEAD)%(then)Head ref%(else)Not Head ref%(end)" >actual &&
        cat >expect <<-\EOF &&
-       master: Head ref
+       main: Head ref
        side: Not Head ref
        odd/spot: Not Head ref
        annotated-tag: Not Head ref
@@ -423,19 +423,19 @@ test_expect_success 'ignore spaces in %(if) atom usage' '
 '
 
 test_expect_success 'check %(if:equals=<string>)' '
-       git for-each-ref --format="%(if:equals=master)%(refname:short)%(then)Found master%(else)Not master%(end)" refs/heads/ >actual &&
+       git for-each-ref --format="%(if:equals=main)%(refname:short)%(then)Found main%(else)Not main%(end)" refs/heads/ >actual &&
        cat >expect <<-\EOF &&
-       Found master
-       Not master
+       Found main
+       Not main
        EOF
        test_cmp expect actual
 '
 
 test_expect_success 'check %(if:notequals=<string>)' '
-       git for-each-ref --format="%(if:notequals=master)%(refname:short)%(then)Not master%(else)Found master%(end)" refs/heads/ >actual &&
+       git for-each-ref --format="%(if:notequals=main)%(refname:short)%(then)Not main%(else)Found main%(end)" refs/heads/ >actual &&
        cat >expect <<-\EOF &&
-       Found master
-       Not master
+       Found main
+       Not main
        EOF
        test_cmp expect actual
 '
@@ -446,11 +446,11 @@ test_expect_success '--merged is compatible with --no-merged' '
 
 test_expect_success 'validate worktree atom' '
        cat >expect <<-EOF &&
-       master: $(pwd)
-       master_worktree: $(pwd)/worktree_dir
+       main: $(pwd)
+       main_worktree: $(pwd)/worktree_dir
        side: not checked out
        EOF
-       git worktree add -b master_worktree worktree_dir master &&
+       git worktree add -b main_worktree worktree_dir main &&
        git for-each-ref --format="%(refname:short): %(if)%(worktreepath)%(then)%(worktreepath)%(else)not checked out%(end)" refs/heads/ >actual &&
        rm -r worktree_dir &&
        git worktree prune &&