git-rebase gets aliases for --summary and --stat to --verbose, as well as a --no-stat, so that git-pull can just forward the --summary directly. Signed-off-by: Tor Arne Vestbø <tavestbo@xxxxxxxxxxxxx> --- Would something like this be welcomed? I'd be happy to tweak the implementation, and add docs, tests, and a config option like merge.stat. Just wanted to check the mood first :) git-pull.sh | 2 +- git-rebase.sh | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/git-pull.sh b/git-pull.sh index 75c3610..12e0ae8 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -179,7 +179,7 @@ fi merge_name=$(git fmt-merge-msg $log_arg <"$GIT_DIR/FETCH_HEAD") || exit test true = "$rebase" && - exec git-rebase $strategy_args --onto $merge_head \ + exec git-rebase $no_stat $strategy_args --onto $merge_head \ ${oldremoteref:-$merge_head} exec git-merge $no_stat $no_commit $squash $no_ff $log_arg $strategy_args \ "$merge_name" HEAD $merge_head diff --git a/git-rebase.sh b/git-rebase.sh index 528b604..9940eea 100755 --- a/git-rebase.sh +++ b/git-rebase.sh @@ -257,9 +257,12 @@ do esac do_merge=t ;; - -v|--verbose) + -v|--verbose|--stat|--summary) verbose=t ;; + -n|--no-stat) + verbose= + ;; --whitespace=*) git_am_opt="$git_am_opt $1" ;; -- 1.6.1.GIT -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html