@@ -970,7 +970,7 @@ test_expect_success 'fetch with branches' '
970970 git branch second $the_first_commit &&
971971 git checkout second &&
972972 mkdir -p testrepo/.git/branches &&
973- echo ".." > testrepo/.git/branches/branch1 &&
973+ echo ".." >testrepo/.git/branches/branch1 &&
974974 (
975975 cd testrepo &&
976976 git fetch branch1 &&
@@ -984,7 +984,7 @@ test_expect_success 'fetch with branches' '
984984test_expect_success ' fetch with branches containing #' '
985985 mk_empty testrepo &&
986986 mkdir -p testrepo/.git/branches &&
987- echo "..#second" > testrepo/.git/branches/branch2 &&
987+ echo "..#second" >testrepo/.git/branches/branch2 &&
988988 (
989989 cd testrepo &&
990990 git fetch branch2 &&
@@ -1001,7 +1001,7 @@ test_expect_success 'push with branches' '
10011001
10021002 test_when_finished "rm -rf .git/branches" &&
10031003 mkdir -p .git/branches &&
1004- echo "testrepo" > .git/branches/branch1 &&
1004+ echo "testrepo" >.git/branches/branch1 &&
10051005
10061006 git push branch1 &&
10071007 (
@@ -1017,7 +1017,7 @@ test_expect_success 'push with branches containing #' '
10171017
10181018 test_when_finished "rm -rf .git/branches" &&
10191019 mkdir -p .git/branches &&
1020- echo "testrepo#branch3" > .git/branches/branch2 &&
1020+ echo "testrepo#branch3" >.git/branches/branch2 &&
10211021
10221022 git push branch2 &&
10231023 (
@@ -1546,7 +1546,7 @@ EOF
15461546 git init no-thin &&
15471547 git --git-dir=no-thin/.git config receive.unpacklimit 0 &&
15481548 git push no-thin/.git refs/heads/main:refs/heads/foo &&
1549- echo modified >> path1 &&
1549+ echo modified >>path1 &&
15501550 git commit -am modified &&
15511551 git repack -adf &&
15521552 rcvpck="git receive-pack --reject-thin-pack-for-testing" &&
0 commit comments