public class RevertCommand extends GitCommand<RevCommit>
revert
command. It has setters for all
supported options and arguments of this command and a call()
method
to finally execute the command. Each instance of this class should only be
used for one invocation of the command (means: one call to call()
)repo
Modifier | Constructor and Description |
---|---|
protected |
RevertCommand(Repository repo)
Constructor for RevertCommand.
|
Modifier and Type | Method and Description |
---|---|
RevCommit |
call() |
MergeResult |
getFailingResult()
Get the result of a merge failure
|
List<Ref> |
getRevertedRefs()
Get the list of successfully reverted
Ref 's. |
List<String> |
getUnmergedPaths()
Get unmerged paths
|
RevertCommand |
include(AnyObjectId commit)
Include a commit to be reverted
|
RevertCommand |
include(Ref commit)
Include a
Ref to a commit to be reverted |
RevertCommand |
include(String name,
AnyObjectId commit)
Include a commit to be reverted
|
RevertCommand |
setOurCommitName(String ourCommitName)
Set the name to be used in the "OURS" place for conflict markers
|
RevertCommand |
setStrategy(MergeStrategy strategy)
Set the merge strategy to use for this revert command
|
checkCallable, getRepository, setCallable
protected RevertCommand(Repository repo)
Constructor for RevertCommand.
repo
- the Repository
public RevCommit call() throws NoMessageException, UnmergedPathsException, ConcurrentRefUpdateException, WrongRepositoryStateException, GitAPIException
Execute the command
Executes the revert
command with all the options and parameters
collected by the setter methods (e.g. include(Ref)
of this
class. Each instance of this class should only be used for one invocation
of the command. Don't call this method twice on an instance.
call
in interface Callable<RevCommit>
call
in class GitCommand<RevCommit>
NoMessageException
UnmergedPathsException
ConcurrentRefUpdateException
WrongRepositoryStateException
GitAPIException
public RevertCommand include(Ref commit)
Ref
to a commit to be revertedcommit
- a reference to a commit to be reverted into the current headthis
public RevertCommand include(AnyObjectId commit)
commit
- the Id of a commit to be reverted into the current headthis
public RevertCommand include(String name, AnyObjectId commit)
name
- name of a Ref
referring to the commitcommit
- the Id of a commit which is reverted into the current headthis
public RevertCommand setOurCommitName(String ourCommitName)
ourCommitName
- the name that should be used in the "OURS" place for conflict
markersthis
public List<Ref> getRevertedRefs()
Ref
's.Ref
's. Never null
but
maybe an empty list if no commit was successfully cherry-pickedpublic MergeResult getFailingResult()
null
if no merge
failure occurred during the revertpublic List<String> getUnmergedPaths()
public RevertCommand setStrategy(MergeStrategy strategy)
strategy
- The merge strategy to use for this revert command.this
Copyright © 2017 Eclipse JGit Project. All rights reserved.