Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 671 Bytes

File metadata and controls

22 lines (15 loc) · 671 Bytes

ICommit interface

Provides access to the details of a commit

public interface ICommit

Members

name description
Author { get; } The author of the commit
Date { get; } Date and time of the commit
ID { get; } The commit ID, presented in the form of a SHA-1 hash.
Message { get; } The commit message added by the author

See Also