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

Method Committer

note.go:179–183  ·  view source on GitHub ↗

Committer returns the signature of the note committer

()

Source from the content-addressed store, hash-verified

177
178// Committer returns the signature of the note committer
179func (n *Note) Committer() *Signature {
180 ptr := C.git_note_committer(n.ptr)
181 runtime.KeepAlive(n)
182 return newSignatureFromC(ptr)
183}
184
185// Message returns the note message
186func (n *Note) Message() string {

Callers 2

TestCreateNoteFunction · 0.45
TestRemoveNoteFunction · 0.45

Calls 1

newSignatureFromCFunction · 0.85

Tested by 2

TestCreateNoteFunction · 0.36
TestRemoveNoteFunction · 0.36