File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -46,22 +46,22 @@ test_expect_success 'rebase fast-forward to master' '
46
46
47
47
test_expect_success ' rebase --stat' '
48
48
git reset --hard start &&
49
- git rebase --stat master >diffstat.txt &&
50
- grep "^ fileX | *1 +$" diffstat.txt
49
+ git rebase --stat master >diffstat.txt &&
50
+ grep "^ fileX | *1 +$" diffstat.txt
51
51
'
52
52
53
53
test_expect_success ' rebase w/config rebase.stat' '
54
54
git reset --hard start &&
55
- git config rebase.stat true &&
56
- git rebase master >diffstat.txt &&
57
- grep "^ fileX | *1 +$" diffstat.txt
55
+ git config rebase.stat true &&
56
+ git rebase master >diffstat.txt &&
57
+ grep "^ fileX | *1 +$" diffstat.txt
58
58
'
59
59
60
60
test_expect_success ' rebase -n overrides config rebase.stat config' '
61
61
git reset --hard start &&
62
- git config rebase.stat true &&
63
- git rebase -n master >diffstat.txt &&
64
- ! grep "^ fileX | *1 +$" diffstat.txt
62
+ git config rebase.stat true &&
63
+ git rebase -n master >diffstat.txt &&
64
+ ! grep "^ fileX | *1 +$" diffstat.txt
65
65
'
66
66
67
67
# Output to stderr:
You can’t perform that action at this time.
0 commit comments