RebaseOperationType
Description:
[ CCode ( cprefix = "GGIT_REBASE_OPERATION_" , type_id = "ggit_rebase_operation_type_get_type ()" ) ]
public enum RebaseOperationType
Type of rebase operation in-progress.
Content:
Enum values:
- EDIT - The given commit is to be
cherry-picked, but the client should stop to allow the user to edit the changes before committing them.
- EXEC - No commit will be
cherry-picked.
- FIXUP - The given commit is to be
squashed into the previous commit.
- PICK - The given commit is to be
cherry-picked.
- REWORD - The given commit is to be
cherry-picked, but the client should prompt the user to provide an updated commit message.
- SQUASH - The given commit is to be
squashed into the previous commit.