Package | Description |
---|---|
org.eclipse.jgit.api |
High-level API commands (the porcelain of JGit).
|
Modifier and Type | Method and Description |
---|---|
StashCreateCommand |
StashCreateCommand.setIncludeUntracked(boolean includeUntracked)
Whether to include untracked files in the stash.
|
StashCreateCommand |
StashCreateCommand.setIndexMessage(java.lang.String message)
Set the message used when committing index changes
|
StashCreateCommand |
StashCreateCommand.setPerson(PersonIdent person)
Set the person to use as the author and committer in the commits made
|
StashCreateCommand |
StashCreateCommand.setRef(java.lang.String ref)
Set the reference to update with the stashed commit id If null, no
reference is updated
|
StashCreateCommand |
StashCreateCommand.setWorkingDirectoryMessage(java.lang.String message)
Set the message used when committing working directory changes
|
StashCreateCommand |
Git.stashCreate()
Return a command object used to create a stashed commit
|