aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcode-review-stat9
1 files changed, 9 insertions, 0 deletions
diff --git a/code-review-stat b/code-review-stat
new file mode 100755
index 0000000..61f58ed
--- /dev/null
+++ b/code-review-stat
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+ARGS='master..'
+
+if [ "$#" -gt 0 ]; then
+ ARGS="$@"
+fi
+
+git diff --stat "$ARGS"