OperationCount gets the count of rebase operations that are to be applied.
()
| 369 | |
| 370 | // OperationCount gets the count of rebase operations that are to be applied. |
| 371 | func (rebase *Rebase) OperationCount() uint { |
| 372 | ret := uint(C.git_rebase_operation_entrycount(rebase.ptr)) |
| 373 | runtime.KeepAlive(rebase) |
| 374 | return ret |
| 375 | } |
| 376 | |
| 377 | // Next performs the next rebase operation and returns the information about it. |
| 378 | // If the operation is one that applies a patch (which is any operation except RebaseOperationExec) |
no outgoing calls