class documentation

Represents a single commit entry in the commit graph.

Method __init__ Initialize CommitGraphEntry.
Method __repr__ Return string representation of CommitGraphEntry.
Instance Variable commit_id Undocumented
Instance Variable commit_time Undocumented
Instance Variable generation Undocumented
Instance Variable parents Undocumented
Instance Variable tree_id Undocumented
def __init__(self, commit_id: ObjectID, tree_id: ObjectID, parents: list[ObjectID], generation: int, commit_time: int):

Initialize CommitGraphEntry.

Parameters
commit_id:ObjectIDThe commit object ID
tree_id:ObjectIDThe tree object ID
parents:list[ObjectID]List of parent commit IDs
generation:intGeneration number
commit_time:intCommit timestamp
def __repr__(self) -> str:

Return string representation of CommitGraphEntry.

commit_id =

Undocumented

commit_time =

Undocumented

generation =

Undocumented

parents =

Undocumented

tree_id =

Undocumented