Package | Description |
---|---|
org.eclipse.jgit.api |
High-level API commands (the porcelain of JGit).
|
Modifier and Type | Method and Description |
---|---|
LogCommand |
LogCommand.add(AnyObjectId start)
Mark a commit to start graph traversal from.
|
LogCommand |
LogCommand.addPath(String path)
Show only commits that affect any of the specified paths.
|
LogCommand |
LogCommand.addRange(AnyObjectId since,
AnyObjectId until)
Adds the range
since..until |
LogCommand |
LogCommand.all()
Add all refs as commits to start the graph traversal from.
|
LogCommand |
Git.log()
Return a command object to execute a
Log command |
LogCommand |
LogCommand.not(AnyObjectId start)
Same as
--not start , or ^start |
LogCommand |
LogCommand.setMaxCount(int maxCount)
Limit the number of commits to output.
|
LogCommand |
LogCommand.setRevFilter(RevFilter aFilter)
Set a filter for the
LogCommand . |
LogCommand |
LogCommand.setSkip(int skip)
Skip the number of commits before starting to show the commit output.
|
Copyright © 2019 Eclipse JGit Project. All rights reserved.