public class StashCreateCommand extends GitCommand<RevCommit>
repo
Constructor and Description |
---|
StashCreateCommand(Repository repo)
Create a command to stash changes in the working directory and index
|
Modifier and Type | Method and Description |
---|---|
RevCommit |
call()
Stash the contents on the working directory and index in separate commits
and reset to the current HEAD commit.
|
StashCreateCommand |
setIncludeUntracked(boolean includeUntracked)
Whether to include untracked files in the stash.
|
StashCreateCommand |
setIndexMessage(String message)
Set the message used when committing index changes
|
StashCreateCommand |
setPerson(PersonIdent person)
Set the person to use as the author and committer in the commits made
|
StashCreateCommand |
setRef(String ref)
Set the reference to update with the stashed commit id
If null, no reference is updated
|
StashCreateCommand |
setWorkingDirectoryMessage(String message)
Set the message used when committing working directory changes
|
checkCallable, getRepository, setCallable
public StashCreateCommand(Repository repo)
repo
- public StashCreateCommand setIndexMessage(String message)
The message will be formatted with the current branch, abbreviated commit id, and short commit message when used.
message
- this
public StashCreateCommand setWorkingDirectoryMessage(String message)
The message will be formatted with the current branch, abbreviated commit id, and short commit message when used.
message
- this
public StashCreateCommand setPerson(PersonIdent person)
person
- this
public StashCreateCommand setRef(String ref)
This value defaults to Constants.R_STASH
ref
- this
public StashCreateCommand setIncludeUntracked(boolean includeUntracked)
includeUntracked
- this
public RevCommit call() throws GitAPIException
call
in interface Callable<RevCommit>
call
in class GitCommand<RevCommit>
GitAPIException
Copyright © 2017 Eclipse JGit Project. All rights reserved.