mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
Merge branch 'mz/maint-rebase-stat-config' into maint
* mz/maint-rebase-stat-config: rebase: only show stat if configured to true
This commit is contained in:
commit
e0cbf12bf7
1 changed files with 2 additions and 1 deletions
|
@ -49,7 +49,8 @@ do_merge=
|
|||
dotest="$GIT_DIR"/rebase-merge
|
||||
prec=4
|
||||
verbose=
|
||||
diffstat=$(git config --bool rebase.stat)
|
||||
diffstat=
|
||||
test "$(git config --bool rebase.stat)" = true && diffstat=t
|
||||
git_am_opt=
|
||||
rebase_root=
|
||||
force_rebase=
|
||||
|
|
Loading…
Reference in a new issue