Re: [PATCH] [GSOC] ref-filter: add %(notes) format atom
From: Junio C Hamano <hidden>
Date: 2021-05-03 02:57:03
ZheNing Hu [off-list ref] writes:
Note that `cat-file --batch` should be a superset of `ref-filter` and `--pretty`, because it supports all objects, while `ref-filter` only supports "commit" and "tag" two kinds of objects, and `--pretty` only supports "commit" one kind of object.
What? A ref can point at any kind of objects, not necessarily commits and tags. %(objectname), %(objecttype), etc. obviously are applicable to any type of object. Another thing worth noting is that ref-filter needs to deal with traits that are not tied to any particular object, but to the ref itself, like who its upstream is and where it would be pushed to.
So it may be reasonable to provide `%(notes)` to "commit","tag" objects in `cat-file --batch` in the future, now integrate them into ref-filter firstly.
And you can attach notes to objects of any type, not limited to commits and tags.
quoted
quoted
So in this patch, I tried to migrate --pretty=%N to --format=%(notes).
What do you mean by "migrate"? Are you making both available?
quoted
quoted
diff --git a/Documentation/git-for-each-ref.txt b/Documentation/git-for-each-ref.txt index 2ae2478de706..07f037a16e13 100644 --- a/Documentation/git-for-each-ref.txt +++ b/Documentation/git-for-each-ref.txt@@ -139,6 +139,9 @@ deltabase:: given object, if it is stored as a delta. Otherwise it expands to the null object name (all zeroes). +notes:: + The notes associated with the ref.
"The notes associated with the object pointed at by the ref".
A note is never associated with a ref. It can only associated with
an object.
If we are going to have %(notes), it may be natural to desire
grabbing notes for the given object from specified notes ref, e.g.
git for-each-ref --format="%(notes:amlog) %(subject)" zh/pretty-date-human
may want to give the same kind of information as
git show -s --format='%N %s' --notes=amlog zh/pretty-date-human
The underlying notes machinery however may not be prepared to work
with more than one notes tree at the same time, so
git for-each-ref --format="%(notes) %(subject)" --notes=amlog zh/pretty-date-human
might be a better syntax, as --format="%(notes:X) %(notes:Y)" may
not be something you can easily support.