Package | Description |
---|---|
org.eclipse.jgit.api |
High-level API commands (the porcelain of JGit).
|
org.eclipse.jgit.lib |
Core API for repository, config, refs, object database.
|
Modifier and Type | Method and Description |
---|---|
private RevCommit |
RebaseCommand.doSquashFixup(boolean isSquash,
RevCommit commitToPick,
RebaseTodoLine nextStep,
java.io.File messageFixup,
java.io.File messageSquash) |
private RebaseResult |
RebaseCommand.processStep(RebaseTodoLine step,
boolean shouldPick) |
private RevCommit |
RebaseCommand.squashIntoPrevious(boolean sequenceContainsSquash,
RebaseTodoLine nextStep) |
Modifier and Type | Method and Description |
---|---|
private void |
RebaseCommand.checkSteps(java.util.List<RebaseTodoLine> steps) |
void |
RebaseCommand.InteractiveHandler.prepareSteps(java.util.List<RebaseTodoLine> steps)
Given list of
steps should be modified according to user
rebase configuration |
Modifier and Type | Method and Description |
---|---|
private static RebaseTodoLine |
RebaseTodoFile.parseLine(byte[] buf,
int tokenBegin,
int lineEnd) |
Modifier and Type | Method and Description |
---|---|
java.util.List<RebaseTodoLine> |
Repository.readRebaseTodo(java.lang.String path,
boolean includeComments)
Read a file formatted like the git-rebase-todo file.
|
java.util.List<RebaseTodoLine> |
RebaseTodoFile.readRebaseTodo(java.lang.String path,
boolean includeComments)
Read a file formatted like the git-rebase-todo file.
|
Modifier and Type | Method and Description |
---|---|
private static void |
RebaseTodoFile.parseComments(byte[] buf,
int tokenBegin,
java.util.List<RebaseTodoLine> r,
int lineEnd) |
void |
Repository.writeRebaseTodoFile(java.lang.String path,
java.util.List<RebaseTodoLine> steps,
boolean append)
Write a file formatted like a git-rebase-todo file.
|
void |
RebaseTodoFile.writeRebaseTodoFile(java.lang.String path,
java.util.List<RebaseTodoLine> steps,
boolean append)
Write a file formatted like a git-rebase-todo file.
|