summaryrefslogtreecommitdiffstats
path: root/bin/git/git-author-stat
diff options
context:
space:
mode:
Diffstat (limited to 'bin/git/git-author-stat')
-rwxr-xr-xbin/git/git-author-stat8
1 files changed, 0 insertions, 8 deletions
diff --git a/bin/git/git-author-stat b/bin/git/git-author-stat
deleted file mode 100755
index 4747fce..0000000
--- a/bin/git/git-author-stat
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-git log "$@" | \
-git shortlog | \
-perl -ne 'print if/^\S+/' | \
-perl -pe 's/(.*)\((\d+)\).*/$2: $1/' | \
-sort -gr | \
-less -MSi;