From d2b8c99ba7169a312f317e1222af4a7b561e377b Mon Sep 17 00:00:00 2001 From: Karsten Dambekalns Date: Fri, 9 Sep 2016 15:27:07 +0200 Subject: [PATCH] Add method to fetch raw commit message The existing `Commit.Message()` returns the trimmed commit message. In some cases it is important to retrieve the exact commit message, even if it contains surrounding newlines. This adds a new `Commit.RawMessage()` to be able to do that. --- commit.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/commit.go b/commit.go index 6830da3..07b7c37 100644 --- a/commit.go +++ b/commit.go @@ -22,6 +22,10 @@ func (c Commit) Message() string { return C.GoString(C.git_commit_message(c.cast_ptr)) } +func (c Commit) RawMessage() string { + return C.GoString(C.git_commit_message_raw(c.cast_ptr)) +} + func (c Commit) Summary() string { return C.GoString(C.git_commit_summary(c.cast_ptr)) }