We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 835673b commit 61a8a9eCopy full SHA for 61a8a9e
1 file changed
tools/git/scripts/commit_messages
@@ -0,0 +1,9 @@
1
+#!/usr/bin/env bash
2
+#
3
+# Prints commits messages.
4
5
+# <weekday> <month> <day> <time> <year> <author_first> <author_last> <message>
6
+
7
+# * `git log`
8
+# - Show the commit message for each commit
9
+git log --format=format:"%ad %aN %s" --date=format:"%a %b %d %T %Y" --reverse --use-mailmap
0 commit comments