()
| 183 | } |
| 184 | |
| 185 | func (c *Commit) ParentCount() uint { |
| 186 | ret := uint(C.git_commit_parentcount(c.cast_ptr)) |
| 187 | runtime.KeepAlive(c) |
| 188 | return ret |
| 189 | } |
| 190 | |
| 191 | func (c *Commit) Amend(refname string, author, committer *Signature, message string, tree *Tree) (*Oid, error) { |
| 192 | var cref *C.char |
no outgoing calls