about summary refs log tree commit diff stats
path: root/archive/1.vm/git_log_filtered
diff options
context:
space:
mode:
Diffstat (limited to 'archive/1.vm/git_log_filtered')
-rwxr-xr-xarchive/1.vm/git_log_filtered9
1 files changed, 9 insertions, 0 deletions
diff --git a/archive/1.vm/git_log_filtered b/archive/1.vm/git_log_filtered
new file mode 100755
index 00000000..7ab6d43e
--- /dev/null
+++ b/archive/1.vm/git_log_filtered
@@ -0,0 +1,9 @@
+#!/bin/sh
+# Show the log while skipping unimportant directories.
+#
+# I usually run this through an alias local to this repo:
+#   $ git config alias.ll '!./git_log_filtered'
+#   $ git ll --stat
+set -e
+
+git log $* -- . ":(exclude)html"