Class CommitInfo
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
HashstringThe full commit hash.
SubjectstringThe commit subject (first line of message).
FilesList<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
Hash
The full commit hash.
public string Hash { get; init; }
Property Value
Subject
The commit subject (first line of message).
public string Subject { get; init; }