git_rebase_operation

A rebase operation

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

extern (C) nothrow @nogc
struct git_rebase_operation {}

Members

Variables

exec
const(char)* exec;

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

id
libgit2_d.oid.git_oid id;

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

type
.git_rebase_operation_t type;

The type of rebase operation.

Meta