@@ -959,7 +959,7 @@ test_expect_success 'fetch with branches' '
959
959
git branch second $the_first_commit &&
960
960
git checkout second &&
961
961
mkdir -p testrepo/.git/branches &&
962
- echo ".." > testrepo/.git/branches/branch1 &&
962
+ echo ".." >testrepo/.git/branches/branch1 &&
963
963
(
964
964
cd testrepo &&
965
965
git fetch branch1 &&
@@ -973,7 +973,7 @@ test_expect_success 'fetch with branches' '
973
973
test_expect_success ' fetch with branches containing #' '
974
974
mk_empty testrepo &&
975
975
mkdir -p testrepo/.git/branches &&
976
- echo "..#second" > testrepo/.git/branches/branch2 &&
976
+ echo "..#second" >testrepo/.git/branches/branch2 &&
977
977
(
978
978
cd testrepo &&
979
979
git fetch branch2 &&
@@ -990,7 +990,7 @@ test_expect_success 'push with branches' '
990
990
991
991
test_when_finished "rm -rf .git/branches" &&
992
992
mkdir -p .git/branches &&
993
- echo "testrepo" > .git/branches/branch1 &&
993
+ echo "testrepo" >.git/branches/branch1 &&
994
994
995
995
git push branch1 &&
996
996
(
@@ -1006,7 +1006,7 @@ test_expect_success 'push with branches containing #' '
1006
1006
1007
1007
test_when_finished "rm -rf .git/branches" &&
1008
1008
mkdir -p .git/branches &&
1009
- echo "testrepo#branch3" > .git/branches/branch2 &&
1009
+ echo "testrepo#branch3" >.git/branches/branch2 &&
1010
1010
1011
1011
git push branch2 &&
1012
1012
(
@@ -1535,7 +1535,7 @@ EOF
1535
1535
git init no-thin &&
1536
1536
git --git-dir=no-thin/.git config receive.unpacklimit 0 &&
1537
1537
git push no-thin/.git refs/heads/main:refs/heads/foo &&
1538
- echo modified >> path1 &&
1538
+ echo modified >>path1 &&
1539
1539
git commit -am modified &&
1540
1540
git repack -adf &&
1541
1541
rcvpck="git receive-pack --reject-thin-pack-for-testing" &&
0 commit comments