|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.eclipse.jgit.api.GitCommand<BlameResult>
org.eclipse.jgit.api.BlameCommand
public class BlameCommand
Blame command for building a BlameResult for a file path.
| Field Summary |
|---|
| Fields inherited from class org.eclipse.jgit.api.GitCommand |
|---|
repo |
| Constructor Summary | |
|---|---|
BlameCommand(Repository repo)
|
|
| Method Summary | |
|---|---|
BlameResult |
call()
Generate a list of lines with information about when the lines were introduced into the file path. |
BlameCommand |
reverse(AnyObjectId start,
AnyObjectId end)
Configure the command to compute reverse blame (history of deletes). |
BlameCommand |
reverse(AnyObjectId start,
Collection<ObjectId> end)
Configure the generator to compute reverse blame (history of deletes). |
BlameCommand |
setDiffAlgorithm(DiffAlgorithm diffAlgorithm)
Set diff algorithm |
BlameCommand |
setFilePath(String filePath)
Set file path |
BlameCommand |
setFollowFileRenames(boolean follow)
Enable (or disable) following file renames. |
BlameCommand |
setStartCommit(AnyObjectId commit)
Set start commit id |
BlameCommand |
setTextComparator(RawTextComparator textComparator)
Set raw text comparator |
| Methods inherited from class org.eclipse.jgit.api.GitCommand |
|---|
checkCallable, getRepository, setCallable |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public BlameCommand(Repository repo)
repo - | Method Detail |
|---|
public BlameCommand setFilePath(String filePath)
filePath -
public BlameCommand setDiffAlgorithm(DiffAlgorithm diffAlgorithm)
diffAlgorithm -
public BlameCommand setTextComparator(RawTextComparator textComparator)
textComparator -
public BlameCommand setStartCommit(AnyObjectId commit)
commit -
public BlameCommand setFollowFileRenames(boolean follow)
If true renames are followed using the standard FollowFilter behavior
used by RevWalk (which matches git log --follow in the C
implementation). This is not the same as copy/move detection as
implemented by the C implementation's of git blame -M -C.
follow - enable following.
this
public BlameCommand reverse(AnyObjectId start,
AnyObjectId end)
throws IOException
start - oldest commit to traverse from. The result file will be loaded
from this commit's tree.end - most recent commit to stop traversal at. Usually an active
branch tip, tag, or HEAD.
this
IOException - the repository cannot be read.
public BlameCommand reverse(AnyObjectId start,
Collection<ObjectId> end)
throws IOException
start - oldest commit to traverse from. The result file will be loaded
from this commit's tree.end - most recent commits to stop traversal at. Usually an active
branch tip, tag, or HEAD.
this
IOException - the repository cannot be read.
public BlameResult call()
throws JGitInternalException
JGitInternalException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||