()
| 145 | } |
| 146 | |
| 147 | func (c *Commit) TreeId() *Oid { |
| 148 | ret := newOidFromC(C.git_commit_tree_id(c.cast_ptr)) |
| 149 | runtime.KeepAlive(c) |
| 150 | return ret |
| 151 | } |
| 152 | |
| 153 | func (c *Commit) Author() *Signature { |
| 154 | cast_ptr := C.git_commit_author(c.cast_ptr) |
nothing calls this directly
no test coverage detected