Last active
December 13, 2015 11:26
-
-
Save vgaltes/0ceb2a2889aea26fbc0e to your computer and use it in GitHub Desktop.
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
let isCommitInfoLine (line: string) = | |
line.StartsWith("[") | |
let commitLines = commit.Split([|lineBreak|], StringSplitOptions.RemoveEmptyEntries) | |
let commitInfoLine = commitLines |> Array.takeWhile(isCommitInfoLine) |> Array.last | |
let fileLines = commitLines |> Array.skipWhile(isCommitInfoLine) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment