about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xgit_log_filtered8
1 files changed, 8 insertions, 0 deletions
diff --git a/git_log_filtered b/git_log_filtered
new file mode 100755
index 00000000..89d1c8bc
--- /dev/null
+++ b/git_log_filtered
@@ -0,0 +1,8 @@
+#!/usr/bin/env zsh
+# 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
+
+git log $* -- . ":(exclude)html" ":(exclude).traces"