Git

class git.User

Bases: object

The class representation of a Git user.

name

The name of the user.

Type:str
email

The email of the user.

Type:str
class git.Commit

Bases: object

The class representation of a Git commit.

hash

The hash of the commit.

Type:str
author

The author of the commit.

Type:User
date

The timestamp of the commit.

Type:datetime.datetime
title

The title of the commit.

Type:str
message

The message of the commit.

Type:str