@@ -867,7 +867,7 @@ test_expect_success 'fetch with branches' '
867
867
git branch second $the_first_commit &&
868
868
git checkout second &&
869
869
mkdir -p testrepo/.git/branches &&
870
- echo ".." > testrepo/.git/branches/branch1 &&
870
+ echo ".." >testrepo/.git/branches/branch1 &&
871
871
(
872
872
cd testrepo &&
873
873
git fetch branch1 &&
@@ -881,7 +881,7 @@ test_expect_success 'fetch with branches' '
881
881
test_expect_success ' fetch with branches containing #' '
882
882
mk_empty testrepo &&
883
883
mkdir -p testrepo/.git/branches &&
884
- echo "..#second" > testrepo/.git/branches/branch2 &&
884
+ echo "..#second" >testrepo/.git/branches/branch2 &&
885
885
(
886
886
cd testrepo &&
887
887
git fetch branch2 &&
@@ -896,7 +896,7 @@ test_expect_success 'push with branches' '
896
896
mk_empty testrepo &&
897
897
git checkout second &&
898
898
mkdir -p .git/branches &&
899
- echo "testrepo" > .git/branches/branch1 &&
899
+ echo "testrepo" >.git/branches/branch1 &&
900
900
git push branch1 &&
901
901
(
902
902
cd testrepo &&
@@ -909,7 +909,7 @@ test_expect_success 'push with branches' '
909
909
test_expect_success ' push with branches containing #' '
910
910
mk_empty testrepo &&
911
911
mkdir -p .git/branches &&
912
- echo "testrepo#branch3" > .git/branches/branch2 &&
912
+ echo "testrepo#branch3" >.git/branches/branch2 &&
913
913
git push branch2 &&
914
914
(
915
915
cd testrepo &&
@@ -1432,7 +1432,7 @@ EOF
1432
1432
git init no-thin &&
1433
1433
git --git-dir=no-thin/.git config receive.unpacklimit 0 &&
1434
1434
git push no-thin/.git refs/heads/master:refs/heads/foo &&
1435
- echo modified >> path1 &&
1435
+ echo modified >>path1 &&
1436
1436
git commit -am modified &&
1437
1437
git repack -adf &&
1438
1438
rcvpck="git receive-pack --reject-thin-pack-for-testing" &&
0 commit comments