Package | Description |
---|---|
org.netbeans.libs.git | |
org.netbeans.libs.git.progress |
Class and 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.
|
GitCherryPickResult
Returned by a git cherry-pick command, represents its result.
|
GitCherryPickResult.CherryPickStatus
The status rebase resulted in.
|
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.
|
GitClient.CherryPickOperation
Used as a parameter of {@link #cherryPick(org.netbeans.libs.git.GitClient.CherryPickOperation, java.lang.String[], org.netbeans.libs.git.progress.ProgressMonitor) to set the behavior of the command.
|
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. |
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.
|
GitConflictDescriptor.Type |
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.
|
GitLineDetails
Contains information needed to construct a file's line annotation.
|
GitMergeResult
Returned by a git merge command, represents its result.
|
GitMergeResult.MergeStatus
The status the merge resulted in.
|
GitObjectType
All supported kinds of git objects.
|
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.
|
GitRebaseResult.RebaseStatus
The status rebase resulted in.
|
GitRefUpdateResult
Result of a local or remote reference update.
|
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.
|
GitRepository.FastForwardOption
Option specifying how to deal with merges and merge commits.
|
GitRepositoryState
Represents th state a repository is currently in.
|
GitRevertResult
Provides information about the result of reverting a commit.
|
GitRevertResult.Status
Result status of a commit revert.
|
GitRevisionInfo
Provides information about a certain commit, usually is returned by
git commit or log command.
|
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.
|
GitSubmoduleStatus.StatusType
Submodule's status
|
GitTag
Represents a git tag.
|
GitTransportUpdate.Type
Git object kind.
|
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.
|
Class and Description |
---|
GitRevisionInfo
Provides information about a certain commit, usually is returned by
git commit or log command.
|
GitStatus
Provides overall information about git status of a certain resource
in a git repository.
|