Skip to content

Commit 838eb92

Browse files
committed
Clarify how tag objects are usually tree-ish and commit-ish
This revises the docstrings of the Tree_ish and Commit_ish unions, to make clearer that tags objects are usually used to identify commits and are thus usually tree-ish and commit-ish. This change relates to the discussion in #1878, starting at: #1878 (review)
1 parent 4fb6d24 commit 838eb92

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

git/types.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -75,37 +75,39 @@
7575
"""
7676

7777
Tree_ish = Union["Commit", "Tree", "TagObject"]
78-
"""Union of :class:`~git.objects.base.Object`-based types that are sometimes tree-ish.
78+
"""Union of :class:`~git.objects.base.Object`-based types that are typically tree-ish.
7979
8080
See :manpage:`gitglossary(7)` on "tree-ish":
8181
https://git-scm.com/docs/gitglossary#def_tree-ish
8282
8383
:note:
8484
:class:`~git.objects.tree.Tree` and :class:`~git.objects.commit.Commit` are the
8585
classes whose instances are all tree-ish. This union includes them, but also
86-
:class:`~git.objects.tag.TagObject`, only **some** of whose instances are tree-ish.
86+
:class:`~git.objects.tag.TagObject`, only **most** of whose instances are tree-ish.
8787
Whether a particular :class:`~git.objects.tag.TagObject` peels (recursively
8888
dereferences) to a tree or commit, rather than a blob, can in general only be known
89-
at runtime.
89+
at runtime. In practice, git tag objects are nearly always used for tagging commits,
90+
and such tags are tree-ish because commits are tree-ish.
9091
9192
:note:
9293
See also the :class:`AnyGitObject` union of all four classes corresponding to git
9394
object types.
9495
"""
9596

9697
Commit_ish = Union["Commit", "TagObject"]
97-
"""Union of :class:`~git.objects.base.Object`-based types that are sometimes commit-ish.
98+
"""Union of :class:`~git.objects.base.Object`-based types that are typically commit-ish.
9899
99100
See :manpage:`gitglossary(7)` on "commit-ish":
100101
https://git-scm.com/docs/gitglossary#def_commit-ish
101102
102103
:note:
103104
:class:`~git.objects.commit.Commit` is the only class whose instances are all
104105
commit-ish. This union type includes :class:`~git.objects.commit.Commit`, but also
105-
:class:`~git.objects.tag.TagObject`, only **some** of whose instances are
106+
:class:`~git.objects.tag.TagObject`, only **most** of whose instances are
106107
commit-ish. Whether a particular :class:`~git.objects.tag.TagObject` peels
107108
(recursively dereferences) to a commit, rather than a tree or blob, can in general
108-
only be known at runtime.
109+
only be known at runtime. In practice, git tag objects are nearly always used for
110+
tagging commits, and such tags are of course commit-ish.
109111
110112
:note:
111113
See also the :class:`AnyGitObject` union of all four classes corresponding to git

0 commit comments

Comments
 (0)