| Class | Description |
|---|---|
| GitBlameResult |
Result of a blame command, wraps line annotations for a given file.
|
| GitBranch |
Represents a local or remote branch in the local Git repository.
|
| GitClient |
This class provides access to all supported git commands, methods that
allow you to get information about a git repository or affect the behavior
of invoked commands.
|
| GitClientCallback |
Used as a callback to acquire user's credentials and ask caller about
different questions during an inter-repository commands, e.g.
|
| GitConflictDescriptor |
When there is a merge conflict in a file from a repository, the file's status
provides instance of this class and you can get more information about the conflict.
|
| GitLineDetails |
Contains information needed to construct a file's line annotation.
|
| GitMergeResult |
Returned by a git merge command, represents its result.
|
| GitPullResult |
Returned by a git pull command, represents its result.
|
| GitPushResult |
Usually returned by a git push command, represents its result.
|
| GitRebaseResult |
Returned by a git rebase command, represents its result.
|
| GitRemoteConfig |
Represents the
[remote] area of a gitconfig file. |
| GitRepository |
A representation of a local Git repository, used to create git clients bound to the repository.
|
| GitRevertResult |
Provides information about the result of reverting a commit.
|
| GitRevisionInfo |
Provides information about a certain commit, usually is returned by
git commit or log command.
|
| GitRevisionInfo.GitFileInfo |
Provides information about what happened to a file between two different commits.
|
| GitStatus |
Provides overall information about git status of a certain resource
in a git repository.
|
| GitTag |
Represents a git tag.
|
| GitTransportUpdate |
Represents a result of transport and update of a git reference between a local and remote
repository.
|
| GitURI |
Representation of a supported Git URI, that denotes a remote repository and
is used mainly in Git commands connecting to remote repositories.
|
| GitUser |
Identification of a git user.
|
| SearchCriteria |
Describes required search criteria for git commands that iterate through git
commits.
|
| Enum | Description |
|---|---|
| GitClient.DiffMode |
Used as a parameter in commands comparing two trees in the repository.
|
| GitClient.RebaseOperationType |
Used as a parameter of
GitClient.rebase(GitClient.RebaseOperationType,
String, ProgressMonitor) to set the behavior of the command. |
| GitClient.ResetType |
Used as a parameter of
GitClient.reset(java.lang.String, org.netbeans.libs.git.GitClient.ResetType, org.netbeans.libs.git.progress.ProgressMonitor)
to set the behavior of the command. |
| GitConflictDescriptor.Type | |
| GitMergeResult.MergeStatus |
The status the merge resulted in.
|
| GitObjectType |
All supported kinds of git objects.
|
| GitRebaseResult.RebaseStatus |
The status rebase resulted in.
|
| GitRefUpdateResult |
Result of a local or remote reference update.
|
| GitRepositoryState |
Represents th state a repository is currently in.
|
| GitRevertResult.Status |
Result status of a commit revert.
|
| GitRevisionInfo.GitFileInfo.Status |
State of the file in the second commit in relevance to the first commit.
|
| GitStatus.Status |
File's status, respectively the state of a file between two trees
(can be HEAD vs.
|
| GitTransportUpdate.Type |
Git object kind.
|
| Exception | Description |
|---|---|
| GitException |
A general exception thrown when an error occurs while running git commands.
|
| GitException.AuthorizationException |
Thrown when an authentication or authorization to a remote repository fails because of
incorrect credentials.
|
| GitException.CheckoutConflictException |
Thrown when a file cannot be checked out into the working tree because it would result in a local conflict.
|
| GitException.MissingObjectException |
Describes an error when a non existent git object is tried to be loaded.
Usually is thrown when a caller passes a name of a branch or tag or a non-existent commit id to a git command. |
| GitException.NotMergedException |
Thrown to notify a caller of the fact that a revision he passed has not been
fully merged into a current HEAD yet.
|
| GitException.RefUpdateException |
Built on May 24 2013. | Portions Copyright 1997-2013 Oracle. All rights reserved.