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
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 RebaseCommand.InteractiveHandler2.ModifyResult
RebaseCommand.InteractiveHandler2. editCommitMessage(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
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(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 String
CommitConfig. cleanText(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.
-