Package org.jenkinsci.plugins.gitclient
Interface RevListCommand
-
- All Superinterfaces:
GitCommand
public interface RevListCommand extends GitCommand
RevListCommand interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description RevListCommandall()Deprecated.favourall(boolean)RevListCommandall(boolean all)all.RevListCommandfirstParent()Deprecated.favourfirstParent(boolean)RevListCommandfirstParent(boolean firstParent)firstParent.RevListCommandnowalk(boolean nowalk)nowalk.RevListCommandreference(String reference)reference.RevListCommandto(List<org.eclipse.jgit.lib.ObjectId> revs)to.-
Methods inherited from interface org.jenkinsci.plugins.gitclient.GitCommand
execute
-
-
-
-
Method Detail
-
all
@Deprecated RevListCommand all()
Deprecated.favourall(boolean)all.- Returns:
- a
RevListCommandobject.
-
all
RevListCommand all(boolean all)
all.- Parameters:
all-trueto list all.- Returns:
- a
RevListCommandobject. - Since:
- 2.5.0
-
nowalk
RevListCommand nowalk(boolean nowalk)
nowalk.- Parameters:
nowalk-trueto skip revision walk.- Returns:
- a
RevListCommandobject.
-
firstParent
@Deprecated RevListCommand firstParent()
Deprecated.favourfirstParent(boolean)firstParent.- Returns:
- a
RevListCommandobject.
-
firstParent
RevListCommand firstParent(boolean firstParent)
firstParent.- Parameters:
firstParent-trueto list first parent- Returns:
- a
RevListCommandobject. - Since:
- 2.5.0
-
to
RevListCommand to(List<org.eclipse.jgit.lib.ObjectId> revs)
to.- Parameters:
revs- aListobject.- Returns:
- a
RevListCommandobject.
-
reference
RevListCommand reference(String reference)
reference.- Parameters:
reference- aStringobject.- Returns:
- a
RevListCommandobject.
-
-