libgit2

git_rebase_operation

Version:

A rebase operation

Describes a single instruction/operation to be performed during the rebase.

Signature

typedef struct git_rebase_operation { git_rebase_operation_t type const git_oid id const char *exec };

Members

type

The type of rebase operation.

id

The commit ID being cherry-picked. This will be populated for all operations except those of type GIT_REBASE_OPERATION_EXEC.

const char *
exec

The executable the user has requested be run. This will only be populated for operations of type GIT_REBASE_OPERATION_EXEC.

Returned By

Parameter To

Versions