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 |
setIndexMessage(java.lang.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(java.lang.String ref)
Set the reference to update with the stashed commit id
|
StashCreateCommand |
setWorkingDirectoryMessage(java.lang.String message)
Set the message used when committing working directory changes
|
checkCallable, getRepository, setCallable
public StashCreateCommand(Repository repo)
repo
- public StashCreateCommand setIndexMessage(java.lang.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(java.lang.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(java.lang.String ref)
This value defaults to Constants.R_STASH
ref
- this
public RevCommit call() throws GitAPIException
call
in interface java.util.concurrent.Callable<RevCommit>
call
in class GitCommand<RevCommit>
GitAPIException
Copyright © 2012. All Rights Reserved.