()
| 124 | } |
| 125 | |
| 126 | func (c *Commit) Summary() string { |
| 127 | ret := C.GoString(C.git_commit_summary(c.cast_ptr)) |
| 128 | runtime.KeepAlive(c) |
| 129 | return ret |
| 130 | } |
| 131 | |
| 132 | func (c *Commit) Tree() (*Tree, error) { |
| 133 | var ptr *C.git_tree |
nothing calls this directly
no outgoing calls
no test coverage detected