@@ -934,7 +934,7 @@ test_expect_success !WITH_BREAKING_CHANGES 'fetch with branches' '
934
934
git branch second $the_first_commit &&
935
935
git checkout second &&
936
936
mkdir -p testrepo/.git/branches &&
937
- echo ".." > testrepo/.git/branches/branch1 &&
937
+ echo ".." >testrepo/.git/branches/branch1 &&
938
938
(
939
939
cd testrepo &&
940
940
git fetch branch1 &&
@@ -948,7 +948,7 @@ test_expect_success !WITH_BREAKING_CHANGES 'fetch with branches' '
948
948
test_expect_success ! WITH_BREAKING_CHANGES ' fetch with branches containing #' '
949
949
mk_empty testrepo &&
950
950
mkdir -p testrepo/.git/branches &&
951
- echo "..#second" > testrepo/.git/branches/branch2 &&
951
+ echo "..#second" >testrepo/.git/branches/branch2 &&
952
952
(
953
953
cd testrepo &&
954
954
git fetch branch2 &&
@@ -965,7 +965,7 @@ test_expect_success !WITH_BREAKING_CHANGES 'push with branches' '
965
965
966
966
test_when_finished "rm -rf .git/branches" &&
967
967
mkdir -p .git/branches &&
968
- echo "testrepo" > .git/branches/branch1 &&
968
+ echo "testrepo" >.git/branches/branch1 &&
969
969
970
970
git push branch1 &&
971
971
(
@@ -981,7 +981,7 @@ test_expect_success !WITH_BREAKING_CHANGES 'push with branches containing #' '
981
981
982
982
test_when_finished "rm -rf .git/branches" &&
983
983
mkdir -p .git/branches &&
984
- echo "testrepo#branch3" > .git/branches/branch2 &&
984
+ echo "testrepo#branch3" >.git/branches/branch2 &&
985
985
986
986
git push branch2 &&
987
987
(
@@ -1511,7 +1511,7 @@ EOF
1511
1511
git init no-thin &&
1512
1512
git --git-dir=no-thin/.git config receive.unpacklimit 0 &&
1513
1513
git push no-thin/.git refs/heads/main:refs/heads/foo &&
1514
- echo modified >> path1 &&
1514
+ echo modified >>path1 &&
1515
1515
git commit -am modified &&
1516
1516
git repack -adf &&
1517
1517
rcvpck="git receive-pack --reject-thin-pack-for-testing" &&
0 commit comments