Package | Description |
---|---|
org.eclipse.jgit.api |
High-level API commands (the porcelain of JGit).
|
Modifier and Type | Method | 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() |
Returns 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.setSkip(int skip) |
Skip the number of commits before starting to show the commit output.
|
Copyright © 2018. All rights reserved.