Package | Description |
---|---|
org.eclipse.jgit.api |
High-level API commands (the porcelain of JGit).
|
org.eclipse.jgit.internal.storage.pack |
Reading/writing Git pack files.
|
org.eclipse.jgit.junit | |
org.eclipse.jgit.junit.http | |
org.eclipse.jgit.lib |
Core API for repository, config, refs, object database.
|
org.eclipse.jgit.merge |
Content and commit history merge algorithms.
|
org.eclipse.jgit.revplot |
Building/rendering revision graphs.
|
org.eclipse.jgit.revwalk |
Walking revision graphs (commit history).
|
Modifier and Type | Method and Description |
---|---|
RevObject |
TagCommand.getObjectId() |
Modifier and Type | Method and Description |
---|---|
TagCommand |
TagCommand.setObjectId(RevObject id)
Sets the object id of the tag.
|
ShowNoteCommand |
ShowNoteCommand.setObjectId(RevObject id)
Sets the object id of object you want a note on
|
RemoveNoteCommand |
RemoveNoteCommand.setObjectId(RevObject id)
Sets the object id of object you want to remove a note
|
AddNoteCommand |
AddNoteCommand.setObjectId(RevObject id)
Sets the object id of object you want a note on.
|
Modifier and Type | Method and Description |
---|---|
void |
PackWriter.addObject(RevObject object)
Include one object to the output file.
|
Modifier and Type | Method and Description |
---|---|
void |
PackWriter.preparePack(Iterator<RevObject> objectsSource)
Prepare the list of objects to be written to the pack stream.
|
Modifier and Type | Method and Description |
---|---|
<T extends RevObject> |
TestRepository.parseBody(T object)
Ensure the body of the given object has been parsed.
|
Modifier and Type | Method and Description |
---|---|
RevObject |
TestRepository.get(RevTree tree,
String path)
Lookup an entry stored in a tree, failing if not present.
|
Modifier and Type | Method and Description |
---|---|
void |
TestRepository.fsck(RevObject... tips)
Run consistency checks against the object database.
|
RevTag |
TestRepository.tag(String name,
RevObject dst)
Construct an annotated tag object pointing at another object.
|
Modifier and Type | Method and Description |
---|---|
protected static void |
HttpTestCase.fsck(Repository db,
RevObject... tips) |
Modifier and Type | Method and Description |
---|---|
void |
TagBuilder.setObjectId(RevObject obj)
Set the object this tag refers to, and infer its type.
|
Modifier and Type | Field and Description |
---|---|
protected RevObject[] |
Merger.sourceObjects
The original objects supplied in the merge; this can be any tree-ish.
|
Modifier and Type | Class and Description |
---|---|
class |
PlotCommit<L extends PlotLane>
A commit reference to a commit in the DAG.
|
Modifier and Type | Class and Description |
---|---|
class |
RevObjectList<E extends RevObject>
An ordered list of
RevObject subclasses. |
Modifier and Type | Class and Description |
---|---|
static class |
DepthWalk.Commit
RevCommit with a depth (in commits) from a root.
|
class |
RevBlob
A binary file, or a symbolic link.
|
class |
RevCommit
A commit reference to a commit in the DAG.
|
class |
RevTag
An annotated tag.
|
class |
RevTree
A reference to a tree of subtrees/files.
|
Modifier and Type | Method and Description |
---|---|
RevObject |
RevTag.getObject()
Get a reference to the object this tag was placed on.
|
RevObject |
RevWalk.lookupAny(AnyObjectId id,
int type)
Locate a reference to any object without loading it.
|
RevObject |
RevWalk.lookupOrNull(AnyObjectId id)
Locate an object that was previously allocated in this walk.
|
RevObject |
AsyncRevObjectQueue.next()
Obtain the next object.
|
RevObject |
ObjectWalk.nextObject()
Pop the next most recent object.
|
RevObject |
RevWalk.parseAny(AnyObjectId id)
Locate a reference to any object and immediately parse its headers.
|
RevObject |
RevWalk.peel(RevObject obj)
Peel back annotated tags until a non-tag object is found.
|
Modifier and Type | Method and Description |
---|---|
void |
DepthWalk.ObjectWalk.markRoot(RevObject o)
Mark a root commit (i.e., one whose depth should be considered 0.)
|
void |
ObjectWalk.markStart(RevObject o)
Mark an object or commit to start graph traversal from.
|
void |
ObjectWalk.markUninteresting(RevObject o)
Mark an object to not produce in the output.
|
void |
DepthWalk.ObjectWalk.markUnshallow(RevObject c)
Mark an element which used to be shallow in the client, but which
should now be considered a full commit.
|
void |
RevWalk.parseBody(RevObject obj)
Ensure the object's full body content is available.
|
void |
RevWalk.parseHeaders(RevObject obj)
Ensure the object's critical headers have been parsed.
|
RevObject |
RevWalk.peel(RevObject obj)
Peel back annotated tags until a non-tag object is found.
|
Copyright © 2015 Eclipse JGit Project. All rights reserved.