diff options
author | Denton Liu <liu.denton@gmail.com> | 2019-11-20 01:51:25 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-11-20 05:33:37 +0100 |
commit | 1f0fc1db8599f87520494ca4f0e3c1b6fabdf997 (patch) | |
tree | 8d49fd7aa011a813f90e2dd9c4bc21648fe4b5e6 /pretty.c | |
parent | pretty: add struct cmt_fmt_map::default_date_mode_type (diff) | |
download | git-1f0fc1db8599f87520494ca4f0e3c1b6fabdf997.tar.xz git-1f0fc1db8599f87520494ca4f0e3c1b6fabdf997.zip |
pretty: implement 'reference' format
The standard format for referencing other commits within some projects
(such as git.git) is the reference format. This is described in
Documentation/SubmittingPatches as
If you want to reference a previous commit in the history of a stable
branch, use the format "abbreviated hash (subject, date)", like this:
....
Commit f86a374 (pack-bitmap.c: fix a memleak, 2015-03-30)
noticed that ...
....
Since this format is so commonly used, standardize it as a pretty
format.
The tests that are implemented essentially show that the format-string
does not change in response to various log options. This is useful
because, for future developers, it shows that we've considered the
limitations of the "canned format-string" approach and we are fine with
them.
Based-on-a-patch-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pretty.c')
-rw-r--r-- | pretty.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -98,7 +98,9 @@ static void setup_commit_formats(void) { "mboxrd", CMIT_FMT_MBOXRD, 0, 0 }, { "fuller", CMIT_FMT_FULLER, 0, 8 }, { "full", CMIT_FMT_FULL, 0, 8 }, - { "oneline", CMIT_FMT_ONELINE, 1, 0 } + { "oneline", CMIT_FMT_ONELINE, 1, 0 }, + { "reference", CMIT_FMT_USERFORMAT, 1, 0, + 0, DATE_SHORT, "%C(auto)%h (%s, %ad)" }, /* * Please update $__git_log_pretty_formats in * git-completion.bash when you add new formats. |