@@ -947,7 +947,7 @@ test_expect_success 'fetch with branches' '
947
947
git branch second $the_first_commit &&
948
948
git checkout second &&
949
949
mkdir -p testrepo/.git/branches &&
950
- echo ".." > testrepo/.git/branches/branch1 &&
950
+ echo ".." >testrepo/.git/branches/branch1 &&
951
951
(
952
952
cd testrepo &&
953
953
git fetch branch1 &&
@@ -961,7 +961,7 @@ test_expect_success 'fetch with branches' '
961
961
test_expect_success ' fetch with branches containing #' '
962
962
mk_empty testrepo &&
963
963
mkdir -p testrepo/.git/branches &&
964
- echo "..#second" > testrepo/.git/branches/branch2 &&
964
+ echo "..#second" >testrepo/.git/branches/branch2 &&
965
965
(
966
966
cd testrepo &&
967
967
git fetch branch2 &&
@@ -978,7 +978,7 @@ test_expect_success 'push with branches' '
978
978
979
979
test_when_finished "rm -rf .git/branches" &&
980
980
mkdir -p .git/branches &&
981
- echo "testrepo" > .git/branches/branch1 &&
981
+ echo "testrepo" >.git/branches/branch1 &&
982
982
983
983
git push branch1 &&
984
984
(
@@ -994,7 +994,7 @@ test_expect_success 'push with branches containing #' '
994
994
995
995
test_when_finished "rm -rf .git/branches" &&
996
996
mkdir -p .git/branches &&
997
- echo "testrepo#branch3" > .git/branches/branch2 &&
997
+ echo "testrepo#branch3" >.git/branches/branch2 &&
998
998
999
999
git push branch2 &&
1000
1000
(
@@ -1523,7 +1523,7 @@ EOF
1523
1523
git init no-thin &&
1524
1524
git --git-dir=no-thin/.git config receive.unpacklimit 0 &&
1525
1525
git push no-thin/.git refs/heads/main:refs/heads/foo &&
1526
- echo modified >> path1 &&
1526
+ echo modified >>path1 &&
1527
1527
git commit -am modified &&
1528
1528
git repack -adf &&
1529
1529
rcvpck="git receive-pack --reject-thin-pack-for-testing" &&
0 commit comments