about summary refs log tree commit diff stats
path: root/git_log_filtered
blob: 7ab6d43ee8d2473f94adf0c619ac9b15a80b064f (plain) (blame)
1
2
3
4
5
6
7
8
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"