We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37fa31d commit c081f51Copy full SHA for c081f51
1 file changed
git/objects/commit.py
@@ -128,6 +128,7 @@ def __init__(self, repo: 'Repo', binsha: bytes, tree: Union[Tree, None] = None,
128
as what time.altzone returns. The sign is inverted compared to git's
129
UTC timezone."""
130
super(Commit, self).__init__(repo, binsha)
131
+ self.binsha = binsha
132
if tree is not None:
133
assert isinstance(tree, Tree), "Tree needs to be a Tree instance, was %s" % type(tree)
134
0 commit comments