Uses of Class
org.eclipse.jgit.lib.CommitConfig.CleanupMode
-
Packages that use CommitConfig.CleanupMode 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 CommitConfig.CleanupMode in org.eclipse.jgit.api
Fields in org.eclipse.jgit.api declared as CommitConfig.CleanupMode Modifier and Type Field Description private CommitConfig.CleanupMode
CommitCommand. cleanupMode
Methods in org.eclipse.jgit.api that return CommitConfig.CleanupMode Modifier and Type Method Description CommitConfig.CleanupMode
RebaseCommand.InteractiveHandler2.ModifyResult. getCleanupMode()
Tells how the message returned byRebaseCommand.InteractiveHandler2.ModifyResult.getMessage()
should be cleaned.Methods in org.eclipse.jgit.api with parameters of type CommitConfig.CleanupMode Modifier and Type Method Description private java.lang.String
RebaseCommand. editCommitMessage(boolean[] doChangeId, java.lang.String message, CommitConfig.CleanupMode mode)
RebaseCommand.InteractiveHandler2.ModifyResult
RebaseCommand.InteractiveHandler2. editCommitMessage(java.lang.String message, CommitConfig.CleanupMode mode, char commentChar)
Callback API for editing a commit message on REWORD or SQUASH.CommitCommand
CommitCommand. setCleanupMode(CommitConfig.CleanupMode mode)
Sets theCommitConfig.CleanupMode
to apply to the commit message. -
Uses of CommitConfig.CleanupMode in org.eclipse.jgit.lib
Fields in org.eclipse.jgit.lib declared as CommitConfig.CleanupMode Modifier and Type Field Description private CommitConfig.CleanupMode
CommitConfig. cleanupMode
Methods in org.eclipse.jgit.lib that return CommitConfig.CleanupMode Modifier and Type Method Description CommitConfig.CleanupMode
CommitConfig. getCleanupMode()
Retrieves theCommitConfig.CleanupMode
as given by git configcommit.cleanup
.CommitConfig.CleanupMode
CommitConfig. resolve(CommitConfig.CleanupMode mode, boolean defaultStrip)
Computes a non-defaultCommitConfig.CleanupMode
from the given mode and the git config.static CommitConfig.CleanupMode
CommitConfig.CleanupMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CommitConfig.CleanupMode[]
CommitConfig.CleanupMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.eclipse.jgit.lib with parameters of type CommitConfig.CleanupMode Modifier and Type Method Description static java.lang.String
CommitConfig. cleanText(java.lang.String text, CommitConfig.CleanupMode mode, char commentChar)
Processes a text according to the givenCommitConfig.CleanupMode
.CommitConfig.CleanupMode
CommitConfig. resolve(CommitConfig.CleanupMode mode, boolean defaultStrip)
Computes a non-defaultCommitConfig.CleanupMode
from the given mode and the git config.
-