add git-log-without-leading-spaces.sh
authorColin P. McCabe <cmccabe@apache.org>
Mon, 7 Aug 2023 20:06:33 +0000 (13:06 -0700)
committerColin P. McCabe <cmccabe@apache.org>
Mon, 7 Aug 2023 20:06:33 +0000 (13:06 -0700)
git-log-without-leading-spaces.sh [new file with mode: 0755]

diff --git a/git-log-without-leading-spaces.sh b/git-log-without-leading-spaces.sh
new file mode 100755 (executable)
index 0000000..6a51f89
--- /dev/null
@@ -0,0 +1,3 @@
+#!/usr/bin/env bash
+#
+git log "$@" | sed 's/^[ ]*//' | less