@@ -970,7 +970,7 @@ test_expect_success 'fetch with branches' '
970
970
git branch second $the_first_commit &&
971
971
git checkout second &&
972
972
mkdir -p testrepo/.git/branches &&
973
- echo ".." > testrepo/.git/branches/branch1 &&
973
+ echo ".." >testrepo/.git/branches/branch1 &&
974
974
(
975
975
cd testrepo &&
976
976
git fetch branch1 &&
@@ -984,7 +984,7 @@ test_expect_success 'fetch with branches' '
984
984
test_expect_success ' fetch with branches containing #' '
985
985
mk_empty testrepo &&
986
986
mkdir -p testrepo/.git/branches &&
987
- echo "..#second" > testrepo/.git/branches/branch2 &&
987
+ echo "..#second" >testrepo/.git/branches/branch2 &&
988
988
(
989
989
cd testrepo &&
990
990
git fetch branch2 &&
@@ -1001,7 +1001,7 @@ test_expect_success 'push with branches' '
1001
1001
1002
1002
test_when_finished "rm -rf .git/branches" &&
1003
1003
mkdir -p .git/branches &&
1004
- echo "testrepo" > .git/branches/branch1 &&
1004
+ echo "testrepo" >.git/branches/branch1 &&
1005
1005
1006
1006
git push branch1 &&
1007
1007
(
@@ -1017,7 +1017,7 @@ test_expect_success 'push with branches containing #' '
1017
1017
1018
1018
test_when_finished "rm -rf .git/branches" &&
1019
1019
mkdir -p .git/branches &&
1020
- echo "testrepo#branch3" > .git/branches/branch2 &&
1020
+ echo "testrepo#branch3" >.git/branches/branch2 &&
1021
1021
1022
1022
git push branch2 &&
1023
1023
(
@@ -1546,7 +1546,7 @@ EOF
1546
1546
git init no-thin &&
1547
1547
git --git-dir=no-thin/.git config receive.unpacklimit 0 &&
1548
1548
git push no-thin/.git refs/heads/main:refs/heads/foo &&
1549
- echo modified >> path1 &&
1549
+ echo modified >>path1 &&
1550
1550
git commit -am modified &&
1551
1551
git repack -adf &&
1552
1552
rcvpck="git receive-pack --reject-thin-pack-for-testing" &&
0 commit comments