Package org.eclipse.jgit.api
Interface RebaseCommand.InteractiveHandler
-
- Enclosing class:
- RebaseCommand
public static interface RebaseCommand.InteractiveHandlerAllows configure rebase interactive process and modify commit message
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringmodifyCommitMessage(java.lang.String commit)Used for editing commit message on REWORDvoidprepareSteps(java.util.List<RebaseTodoLine> steps)Given list ofstepsshould be modified according to user rebase configuration
-
-
-
Method Detail
-
prepareSteps
void prepareSteps(java.util.List<RebaseTodoLine> steps)
Given list ofstepsshould be modified according to user rebase configuration- Parameters:
steps- initial configuration of rebase interactive
-
modifyCommitMessage
java.lang.String modifyCommitMessage(java.lang.String commit)
Used for editing commit message on REWORD- Parameters:
commit-- Returns:
- new commit message
-
-