Table of Contents

Class CommitInfo

Namespace
Ando.Utilities
Assembly
ando.dll

Represents detailed information about a git commit.

public record CommitInfo : IEquatable<CommitInfo>
Inheritance
CommitInfo
Implements
Inherited Members

Constructors

CommitInfo(string, string, List<string>)

Represents detailed information about a git commit.

public CommitInfo(string Hash, string Subject, List<string> Files)

Parameters

Hash string

The full commit hash.

Subject string

The commit subject (first line of message).

Files List<string>

List of files changed in this commit.

Properties

Files

List of files changed in this commit.

public List<string> Files { get; init; }

Property Value

List<string>

Hash

The full commit hash.

public string Hash { get; init; }

Property Value

string

Subject

The commit subject (first line of message).

public string Subject { get; init; }

Property Value

string