@@ -980,7 +980,7 @@ test_expect_success 'fetch with branches' '
980
980
git branch second $the_first_commit &&
981
981
git checkout second &&
982
982
mkdir -p testrepo/.git/branches &&
983
- echo ".." > testrepo/.git/branches/branch1 &&
983
+ echo ".." >testrepo/.git/branches/branch1 &&
984
984
(
985
985
cd testrepo &&
986
986
git fetch branch1 &&
@@ -994,7 +994,7 @@ test_expect_success 'fetch with branches' '
994
994
test_expect_success ' fetch with branches containing #' '
995
995
mk_empty testrepo &&
996
996
mkdir -p testrepo/.git/branches &&
997
- echo "..#second" > testrepo/.git/branches/branch2 &&
997
+ echo "..#second" >testrepo/.git/branches/branch2 &&
998
998
(
999
999
cd testrepo &&
1000
1000
git fetch branch2 &&
@@ -1011,7 +1011,7 @@ test_expect_success 'push with branches' '
1011
1011
1012
1012
test_when_finished "rm -rf .git/branches" &&
1013
1013
mkdir -p .git/branches &&
1014
- echo "testrepo" > .git/branches/branch1 &&
1014
+ echo "testrepo" >.git/branches/branch1 &&
1015
1015
1016
1016
git push branch1 &&
1017
1017
(
@@ -1027,7 +1027,7 @@ test_expect_success 'push with branches containing #' '
1027
1027
1028
1028
test_when_finished "rm -rf .git/branches" &&
1029
1029
mkdir -p .git/branches &&
1030
- echo "testrepo#branch3" > .git/branches/branch2 &&
1030
+ echo "testrepo#branch3" >.git/branches/branch2 &&
1031
1031
1032
1032
git push branch2 &&
1033
1033
(
@@ -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