Created
December 13, 2015 11:09
-
-
Save vgaltes/e2afec3fd11e17ab96cf to your computer and use it in GitHub Desktop.
Commit structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type CommitInfo = {Hash : string; Author : string; TimeStamp : DateTime; Message : string} | |
type CommittedFile = {LinesAdded: int option; LinesDeleted: int option; FileName: string} | |
type Commit = {CommitInfo: CommitInfo; Files: CommittedFile[]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment