git_rebase_next

Performs the next rebase operation and returns the information about it. If the operation is one that applies a patch (which is any operation except git_rebase_operation_t.GIT_REBASE_OPERATION_EXEC) then the patch will be applied and the index and working directory will be updated with the changes. If there are conflicts, you will need to address those before committing the changes.

extern (C) nothrow @nogc
int
git_rebase_next

Parameters

operation .git_rebase_operation**

Pointer to store the rebase operation that is to be performed next

rebase libgit2_d.types.git_rebase*

The rebase in progress

Return Value

Type: int

Zero on success; -1 on failure.

Meta