Skip to content

Instantly share code, notes, and snippets.

@vgaltes
Created December 13, 2015 11:09
Show Gist options
  • Save vgaltes/e2afec3fd11e17ab96cf to your computer and use it in GitHub Desktop.
Save vgaltes/e2afec3fd11e17ab96cf to your computer and use it in GitHub Desktop.
Commit structure
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