From a69a070c27a1281fa4eb2c04d71ec55a8e0fef72 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Fri, 5 Dec 2014 11:33:48 +0100 Subject: [PATCH] fpull: Show diffstat It isn't shown by default with rebase, but it's pretty useful. --- modules/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index 77c3288..e5cbe8c 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -6012,7 +6012,7 @@ game.__doc__ = game_help def fpull(cli, nick, chan, rest): """Pulls from the repository to update the bot.""" - args = ["git", "pull", "--rebase=preserve"] + args = ["git", "pull", "--stat", "--rebase=preserve"] if rest: args += rest.split(" ")