Skip to content

Commit

Permalink
Merge branch 'mz/maint-rebase-stat-config'
Browse files Browse the repository at this point in the history
* mz/maint-rebase-stat-config:
  rebase: only show stat if configured to true
  • Loading branch information
gitster committed Dec 13, 2010
2 parents 6758af8 + 9474a02 commit 25756cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion git-rebase.sh
Expand Up @@ -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=
Expand Down

0 comments on commit 25756cf

Please sign in to comment.