From: Colin P. McCabe Date: Mon, 7 Aug 2023 20:06:33 +0000 (-0700) Subject: add git-log-without-leading-spaces.sh X-Git-Url: http://www.club.cc.cmu.edu/~cmccabe/cgi-bin/gitweb.cgi?p=cmccabe-bin;a=commitdiff_plain;h=ef5d2578315c704cc7fb722ae4dedf1d41ee4239 add git-log-without-leading-spaces.sh --- diff --git a/git-log-without-leading-spaces.sh b/git-log-without-leading-spaces.sh new file mode 100755 index 0000000..6a51f89 --- /dev/null +++ b/git-log-without-leading-spaces.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +# +git log "$@" | sed 's/^[ ]*//' | less