@@ -947,7 +947,7 @@ test_expect_success 'fetch with branches' '
947947 git branch second $the_first_commit &&
948948 git checkout second &&
949949 mkdir -p testrepo/.git/branches &&
950- echo ".." > testrepo/.git/branches/branch1 &&
950+ echo ".." >testrepo/.git/branches/branch1 &&
951951 (
952952 cd testrepo &&
953953 git fetch branch1 &&
@@ -961,7 +961,7 @@ test_expect_success 'fetch with branches' '
961961test_expect_success ' fetch with branches containing #' '
962962 mk_empty testrepo &&
963963 mkdir -p testrepo/.git/branches &&
964- echo "..#second" > testrepo/.git/branches/branch2 &&
964+ echo "..#second" >testrepo/.git/branches/branch2 &&
965965 (
966966 cd testrepo &&
967967 git fetch branch2 &&
@@ -978,7 +978,7 @@ test_expect_success 'push with branches' '
978978
979979 test_when_finished "rm -rf .git/branches" &&
980980 mkdir -p .git/branches &&
981- echo "testrepo" > .git/branches/branch1 &&
981+ echo "testrepo" >.git/branches/branch1 &&
982982
983983 git push branch1 &&
984984 (
@@ -994,7 +994,7 @@ test_expect_success 'push with branches containing #' '
994994
995995 test_when_finished "rm -rf .git/branches" &&
996996 mkdir -p .git/branches &&
997- echo "testrepo#branch3" > .git/branches/branch2 &&
997+ echo "testrepo#branch3" >.git/branches/branch2 &&
998998
999999 git push branch2 &&
10001000 (
@@ -1523,7 +1523,7 @@ EOF
15231523 git init no-thin &&
15241524 git --git-dir=no-thin/.git config receive.unpacklimit 0 &&
15251525 git push no-thin/.git refs/heads/main:refs/heads/foo &&
1526- echo modified >> path1 &&
1526+ echo modified >>path1 &&
15271527 git commit -am modified &&
15281528 git repack -adf &&
15291529 rcvpck="git receive-pack --reject-thin-pack-for-testing" &&
0 commit comments