(fullText: string)
| 124 | |
| 125 | /** Parse a commit message from a git log entry into its composite parts. */ |
| 126 | export function parseCommitFromGitLog(fullText: string): CommitFromGitLog { |
| 127 | return parseInternal(fullText) as CommitFromGitLog; |
| 128 | } |
| 129 | |
| 130 | /** Parse a full commit message into its composite parts. */ |
| 131 | function parseInternal(fullText: string): CommitFromGitLog | Commit { |