@@ -987,7 +987,7 @@ test_expect_success !WITH_BREAKING_CHANGES 'fetch with branches' '
987
987
git branch second $the_first_commit &&
988
988
git checkout second &&
989
989
mkdir -p testrepo/.git/branches &&
990
- echo ".." > testrepo/.git/branches/branch1 &&
990
+ echo ".." >testrepo/.git/branches/branch1 &&
991
991
(
992
992
cd testrepo &&
993
993
git fetch branch1 &&
@@ -1001,7 +1001,7 @@ test_expect_success !WITH_BREAKING_CHANGES 'fetch with branches' '
1001
1001
test_expect_success ! WITH_BREAKING_CHANGES ' fetch with branches containing #' '
1002
1002
mk_empty testrepo &&
1003
1003
mkdir -p testrepo/.git/branches &&
1004
- echo "..#second" > testrepo/.git/branches/branch2 &&
1004
+ echo "..#second" >testrepo/.git/branches/branch2 &&
1005
1005
(
1006
1006
cd testrepo &&
1007
1007
git fetch branch2 &&
@@ -1018,7 +1018,7 @@ test_expect_success !WITH_BREAKING_CHANGES 'push with branches' '
1018
1018
1019
1019
test_when_finished "rm -rf .git/branches" &&
1020
1020
mkdir -p .git/branches &&
1021
- echo "testrepo" > .git/branches/branch1 &&
1021
+ echo "testrepo" >.git/branches/branch1 &&
1022
1022
1023
1023
git push branch1 &&
1024
1024
(
@@ -1034,7 +1034,7 @@ test_expect_success !WITH_BREAKING_CHANGES 'push with branches containing #' '
1034
1034
1035
1035
test_when_finished "rm -rf .git/branches" &&
1036
1036
mkdir -p .git/branches &&
1037
- echo "testrepo#branch3" > .git/branches/branch2 &&
1037
+ echo "testrepo#branch3" >.git/branches/branch2 &&
1038
1038
1039
1039
git push branch2 &&
1040
1040
(
@@ -1564,7 +1564,7 @@ EOF
1564
1564
git init no-thin &&
1565
1565
git --git-dir=no-thin/.git config receive.unpacklimit 0 &&
1566
1566
git push no-thin/.git refs/heads/main:refs/heads/foo &&
1567
- echo modified >> path1 &&
1567
+ echo modified >>path1 &&
1568
1568
git commit -am modified &&
1569
1569
git repack -adf &&
1570
1570
rcvpck="git receive-pack --reject-thin-pack-for-testing" &&
0 commit comments