3 test_description
='pull options'
9 test_expect_success
'setup' '
11 (cd parent && git init &&
12 echo one >file && git add file &&
18 test_expect_success
'git pull -q' '
21 git pull -q "$D/parent" >out 2>err &&
27 test_expect_success
'git pull' '
30 git pull "$D/parent" >out 2>err &&
35 test_expect_success
'git pull -v' '
38 git pull -v "$D/parent" >out 2>err &&
44 test_expect_success
'git pull -v -q' '
47 git pull -v -q "$D/parent" >out 2>err &&
53 test_expect_success
'git pull -q -v' '
56 git pull -q -v "$D/parent" >out 2>err &&