@@ -981,7 +981,7 @@ test_expect_success 'fetch with branches' '
981
981
git branch second $the_first_commit &&
982
982
git checkout second &&
983
983
mkdir -p testrepo/.git/branches &&
984
- echo ".." > testrepo/.git/branches/branch1 &&
984
+ echo ".." >testrepo/.git/branches/branch1 &&
985
985
(
986
986
cd testrepo &&
987
987
git fetch branch1 &&
@@ -995,7 +995,7 @@ test_expect_success 'fetch with branches' '
995
995
test_expect_success ' fetch with branches containing #' '
996
996
mk_empty testrepo &&
997
997
mkdir -p testrepo/.git/branches &&
998
- echo "..#second" > testrepo/.git/branches/branch2 &&
998
+ echo "..#second" >testrepo/.git/branches/branch2 &&
999
999
(
1000
1000
cd testrepo &&
1001
1001
git fetch branch2 &&
@@ -1012,7 +1012,7 @@ test_expect_success 'push with branches' '
1012
1012
1013
1013
test_when_finished "rm -rf .git/branches" &&
1014
1014
mkdir -p .git/branches &&
1015
- echo "testrepo" > .git/branches/branch1 &&
1015
+ echo "testrepo" >.git/branches/branch1 &&
1016
1016
1017
1017
git push branch1 &&
1018
1018
(
@@ -1028,7 +1028,7 @@ test_expect_success 'push with branches containing #' '
1028
1028
1029
1029
test_when_finished "rm -rf .git/branches" &&
1030
1030
mkdir -p .git/branches &&
1031
- echo "testrepo#branch3" > .git/branches/branch2 &&
1031
+ echo "testrepo#branch3" >.git/branches/branch2 &&
1032
1032
1033
1033
git push branch2 &&
1034
1034
(
@@ -1557,7 +1557,7 @@ EOF
1557
1557
git init no-thin &&
1558
1558
git --git-dir=no-thin/.git config receive.unpacklimit 0 &&
1559
1559
git push no-thin/.git refs/heads/main:refs/heads/foo &&
1560
- echo modified >> path1 &&
1560
+ echo modified >>path1 &&
1561
1561
git commit -am modified &&
1562
1562
git repack -adf &&
1563
1563
rcvpck="git receive-pack --reject-thin-pack-for-testing" &&
0 commit comments