test_must_fail git bundle create adir --all
'
- test_expect_failure 'bundle --stdin' '
+ test_expect_success 'bundle --stdin' '
- echo master | git bundle create stdin-bundle.bdl --stdin &&
+ echo main | git bundle create stdin-bundle.bdl --stdin &&
git ls-remote stdin-bundle.bdl >output &&
- grep master output
+ grep main output
'
- test_expect_failure 'bundle --stdin <rev-list options>' '
+ test_expect_success 'bundle --stdin <rev-list options>' '
- echo master | git bundle create hybrid-bundle.bdl --stdin tag &&
+ echo main | git bundle create hybrid-bundle.bdl --stdin tag &&
git ls-remote hybrid-bundle.bdl >output &&
- grep master output
+ grep main output
'
test_expect_success 'empty bundle file is rejected' '