Java org.eclipse.jgit.api LogCommand fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jgit.api LogCommand fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jgit.api LogCommand.

The text is from its open source code.

Method

LogCommandadd(AnyObjectId start)
Mark a commit to start graph traversal from.
LogCommandaddPath(String path)
Show only commits that affect any of the specified paths.
LogCommandaddRange(AnyObjectId since, AnyObjectId until)
Adds the range since..until
LogCommandall()
Add all refs as commits to start the graph traversal from.
Iterablecall()

Executes the Log command with all the options and parameters collected by the setter methods (e.g.

LogCommandnot(AnyObjectId start)
Same as --not start , or ^start
LogCommandsetMaxCount(int maxCount)
Limit the number of commits to output.
LogCommandsetSkip(int skip)
Skip the number of commits before starting to show the commit output.