()
| 158 | } |
| 159 | |
| 160 | func (c *Commit) Committer() *Signature { |
| 161 | cast_ptr := C.git_commit_committer(c.cast_ptr) |
| 162 | ret := newSignatureFromC(cast_ptr) |
| 163 | runtime.KeepAlive(c) |
| 164 | return ret |
| 165 | } |
| 166 | |
| 167 | func (c *Commit) Parent(n uint) *Commit { |
| 168 | var cobj *C.git_commit |
nothing calls this directly
no test coverage detected