(c *C.git_rebase_operation)
| 64 | } |
| 65 | |
| 66 | func newRebaseOperationFromC(c *C.git_rebase_operation) *RebaseOperation { |
| 67 | operation := &RebaseOperation{} |
| 68 | operation.Type = RebaseOperationType(c._type) |
| 69 | operation.Id = newOidFromC(&c.id) |
| 70 | operation.Exec = C.GoString(c.exec) |
| 71 | |
| 72 | return operation |
| 73 | } |
| 74 | |
| 75 | //export commitCreateCallback |
| 76 | func commitCreateCallback( |
no test coverage detected
searching dependent graphs…