mu/git_log_filtered

10 lines
234 B
Plaintext
Raw Normal View History

2016-10-07 04:49:21 +00:00
#!/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"