@@ -909,7 +909,7 @@ test_expect_success 'fetch with branches' '
909
909
git branch second $the_first_commit &&
910
910
git checkout second &&
911
911
mkdir -p testrepo/.git/branches &&
912
- echo ".." > testrepo/.git/branches/branch1 &&
912
+ echo ".." >testrepo/.git/branches/branch1 &&
913
913
(
914
914
cd testrepo &&
915
915
git fetch branch1 &&
@@ -923,7 +923,7 @@ test_expect_success 'fetch with branches' '
923
923
test_expect_success ' fetch with branches containing #' '
924
924
mk_empty testrepo &&
925
925
mkdir -p testrepo/.git/branches &&
926
- echo "..#second" > testrepo/.git/branches/branch2 &&
926
+ echo "..#second" >testrepo/.git/branches/branch2 &&
927
927
(
928
928
cd testrepo &&
929
929
git fetch branch2 &&
@@ -938,7 +938,7 @@ test_expect_success 'push with branches' '
938
938
mk_empty testrepo &&
939
939
git checkout second &&
940
940
mkdir -p .git/branches &&
941
- echo "testrepo" > .git/branches/branch1 &&
941
+ echo "testrepo" >.git/branches/branch1 &&
942
942
git push branch1 &&
943
943
(
944
944
cd testrepo &&
@@ -951,7 +951,7 @@ test_expect_success 'push with branches' '
951
951
test_expect_success ' push with branches containing #' '
952
952
mk_empty testrepo &&
953
953
mkdir -p .git/branches &&
954
- echo "testrepo#branch3" > .git/branches/branch2 &&
954
+ echo "testrepo#branch3" >.git/branches/branch2 &&
955
955
git push branch2 &&
956
956
(
957
957
cd testrepo &&
@@ -1476,7 +1476,7 @@ EOF
1476
1476
git init no-thin &&
1477
1477
git --git-dir=no-thin/.git config receive.unpacklimit 0 &&
1478
1478
git push no-thin/.git refs/heads/main:refs/heads/foo &&
1479
- echo modified >> path1 &&
1479
+ echo modified >>path1 &&
1480
1480
git commit -am modified &&
1481
1481
git repack -adf &&
1482
1482
rcvpck="git receive-pack --reject-thin-pack-for-testing" &&
0 commit comments