diff options
author | Hariom Verma <hariom18599@gmail.com> | 2020-08-21 21:41:48 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-08-28 13:52:50 -0700 |
commit | 26bc0aaf99147cdf2d29cb6d831dfa72ec94b61b (patch) | |
tree | 403861bc2ecaf7ae1070e60d4f90632b64ced335 /Documentation | |
parent | ref-filter: add `short` modifier to 'tree' atom (diff) | |
download | tgif-26bc0aaf99147cdf2d29cb6d831dfa72ec94b61b.tar.xz |
ref-filter: add `short` modifier to 'parent' atom
Sometimes while using 'parent' atom, user might want to see abbrev hash
instead of full 40 character hash.
Just like 'objectname', it might be convenient for users to have the
`:short` and `:short=<length>` option for printing 'parent' hash.
Let's introduce `short` option to 'parent' atom.
Mentored-by: Christian Couder <chriscool@tuxfamily.org>
Mentored-by: Heba Waly <heba.waly@gmail.com>
Signed-off-by: Hariom Verma <hariom18599@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-for-each-ref.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-for-each-ref.txt b/Documentation/git-for-each-ref.txt index 40ebdfcc41..dd09763e7d 100644 --- a/Documentation/git-for-each-ref.txt +++ b/Documentation/git-for-each-ref.txt @@ -222,7 +222,7 @@ worktreepath:: In addition to the above, for commit and tag objects, the header field names (`tree`, `parent`, `object`, `type`, and `tag`) can be used to specify the value in the header field. -Field `tree` can also be used with modifier `:short` and +Fields `tree` and `parent` can also be used with modifier `:short` and `:short=<length>` just like `objectname`. For commit and tag objects, the special `creatordate` and `creator` |