From: Colin P. McCabe <cmccabe@apache.org>
Date: Mon, 7 Aug 2023 20:06:33 +0000 (-0700)
Subject: add git-log-without-leading-spaces.sh
X-Git-Url: http://club.cc.cmu.edu/~cmccabe/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef5d2578315c704cc7fb722ae4dedf1d41ee4239;p=cmccabe-bin

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