Enum git2::RebaseOperationType [−][src]
pub enum RebaseOperationType {
Pick,
Reword,
Edit,
Squash,
Fixup,
Exec,
}
Expand description
A rebase operation
Describes a single instruction/operation to be performed during the rebase.
Variants
The given commit is to be cherry-picked. The client should commit the changes and continue if there are no conflicts.
The given commit is to be cherry-picked, but the client should prompt the user to provide an updated commit message.
The given commit is to be cherry-picked, but the client should stop to allow the user to edit the changes before committing them.
The given commit is to be squashed into the previous commit. The commit message will be merged with the previous message.
The given commit is to be squashed into the previous commit. The commit message from this commit will be discarded.
No commit will be cherry-picked. The client should run the given command and (if successful) continue.
Implementations
Convert from the int into an enum. Returns None if invalid.