Committer returns the signature of the note committer
()
| 177 | |
| 178 | // Committer returns the signature of the note committer |
| 179 | func (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 |
| 186 | func (n *Note) Message() string { |