Package org.eclipse.jgit.api
Interface RebaseCommand.InteractiveHandler
- All Known Subinterfaces:
RebaseCommand.InteractiveHandler2
- Enclosing class:
- RebaseCommand
public static interface RebaseCommand.InteractiveHandler
Allows to configure the interactive rebase process steps and to modify
commit messages.
-
Method Summary
Modifier and TypeMethodDescriptionmodifyCommitMessage
(String message) Used for editing commit message on REWORD or SQUASH.void
prepareSteps
(List<RebaseTodoLine> steps) Callback API to modify the initial list of interactive rebase steps.
-
Method Details
-
prepareSteps
Callback API to modify the initial list of interactive rebase steps.- Parameters:
steps
- initial configuration of interactive rebase
-
modifyCommitMessage
Used for editing commit message on REWORD or SQUASH.- Parameters:
message
- existing commit message- Returns:
- new commit message
-