MCPcopy Create free account
hub / github.com/libgit2/git2go / Author

Method Author

commit.go:153–158  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

151}
152
153func (c *Commit) Author() *Signature {
154 cast_ptr := C.git_commit_author(c.cast_ptr)
155 ret := newSignatureFromC(cast_ptr)
156 runtime.KeepAlive(c)
157 return ret
158}
159
160func (c *Commit) Committer() *Signature {
161 cast_ptr := C.git_commit_committer(c.cast_ptr)

Callers

nothing calls this directly

Calls 1

newSignatureFromCFunction · 0.85

Tested by

no test coverage detected