MCPcopy Create free account
hub / github.com/libgit2/git2go / OperationCount

Method OperationCount

rebase.go:371–375  ·  view source on GitHub ↗

OperationCount gets the count of rebase operations that are to be applied.

()

Source from the content-addressed store, hash-verified

369
370// OperationCount gets the count of rebase operations that are to be applied.
371func (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)

Callers 1

performRebaseOntoFunction · 0.80

Calls

no outgoing calls

Tested by 1

performRebaseOntoFunction · 0.64