Uses of Class
org.eclipse.jgit.lib.RebaseTodoLine
-
Packages that use RebaseTodoLine 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. -
-
Uses of RebaseTodoLine in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type RebaseTodoLine Modifier and Type Method 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)
Method parameters in org.eclipse.jgit.api with type arguments of type RebaseTodoLine Modifier and Type Method Description private void
RebaseCommand. checkSteps(java.util.List<RebaseTodoLine> steps)
void
RebaseCommand.InteractiveHandler. prepareSteps(java.util.List<RebaseTodoLine> steps)
Given list ofsteps
should be modified according to user rebase configuration -
Uses of RebaseTodoLine in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib that return RebaseTodoLine Modifier and Type Method Description private static RebaseTodoLine
RebaseTodoFile. parseLine(byte[] buf, int tokenBegin, int lineEnd)
Methods in org.eclipse.jgit.lib that return types with arguments of type RebaseTodoLine Modifier and Type Method Description java.util.List<RebaseTodoLine>
RebaseTodoFile. readRebaseTodo(java.lang.String path, boolean includeComments)
Read a file formatted like the git-rebase-todo file.java.util.List<RebaseTodoLine>
Repository. readRebaseTodo(java.lang.String path, boolean includeComments)
Read a file formatted like the git-rebase-todo file.Method parameters in org.eclipse.jgit.lib with type arguments of type RebaseTodoLine Modifier and Type Method Description private static void
RebaseTodoFile. parseComments(byte[] buf, int tokenBegin, java.util.List<RebaseTodoLine> r, int lineEnd)
void
RebaseTodoFile. writeRebaseTodoFile(java.lang.String path, java.util.List<RebaseTodoLine> steps, boolean append)
Write a file formatted like a git-rebase-todo file.void
Repository. writeRebaseTodoFile(java.lang.String path, java.util.List<RebaseTodoLine> steps, boolean append)
Write a file formatted like a git-rebase-todo file.
-