summary
Get the short "summary" of the git commit message.
The returned message is the summary of the commit, comprising the first paragraph of the message with whitespace trimmed and squashed.
Throws error if the summary is not valid utf-8.
Signature
ts
class Commit {
summary(): string | null;
}
Returns
- null | string
Short summary of this commit message.
Errors
- Error
If the summary is not valid utf-8.