mu/git_log_filtered
Kartik K. Agaram ba838feae9 4211
Just ran into first issue from using the portable /bin/sh rather than a
modern shell:
  https://stackoverflow.com/questions/15744421/read-command-doesnt-wait-for-input

Turn on errexit everywhere.
2018-02-20 01:38:15 -08:00

10 lines
234 B
Bash
Executable File

#!/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"