MCPcopy Create free account
hub / github.com/angular/dev-infra / parseCommitFromGitLog

Function parseCommitFromGitLog

ng-dev/commit-message/parse.ts:126–128  ·  view source on GitHub ↗
(fullText: string)

Source from the content-addressed store, hash-verified

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

Callers 4

getCommitsInRangeFunction · 0.85
common.spec.tsFile · 0.85
buildCommitFunction · 0.85

Calls 1

parseInternalFunction · 0.85

Tested by 1

buildCommitFunction · 0.68