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