Java org.eclipse.jgit.api Git fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jgit.api Git fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jgit.api Git.

The text is from its open source code.

Implementation

org.eclipse.jgit.api.Git has the following implementations.
Click this link to see all its implementation.

Constructor

Git(Repository repo)
Construct a new org.eclipse.jgit.api.Git object which can interact with the specified git repository.

Method

AddCommandadd()
Return a command object to execute a Add command
ApplyCommandapply()
Return a command object to execute a apply command
ArchiveCommandarchive()
Return a command to create an archive from a tree
BlameCommandblame()
Return a command object to execute a blame command
CreateBranchCommandbranchCreate()
Return a command object used to create branches
DeleteBranchCommandbranchDelete()
Return a command object used to delete branches
ListBranchCommandbranchList()
Return a command object used to list branches
RenameBranchCommandbranchRename()
Return a command object used to rename branches
CheckoutCommandcheckout()
Return a command object to execute a checkout command
CherryPickCommandcherryPick()
Return a command object to execute a cherry-pick command
CleanCommandclean()
Return a command object to execute a clean command
CloneCommandcloneRepository()
Return a command object to execute a clone command
voidclose()

Free resources associated with this instance.

CommitCommandcommit()
Return a command object to execute a Commit command
DescribeCommanddescribe()
Return a command object to come up with a short name that describes a commit in terms of the nearest git tag.
DiffCommanddiff()
Return a command object to execute a diff command
FetchCommandfetch()
Return a command object to execute a Fetch command
GarbageCollectCommandgc()
Return a command object to execute a gc command
RepositorygetRepository()
Get repository
InitCommandinit()
Return a command object to execute a init command
LogCommandlog()
Return a command object to execute a Log command
LsRemoteCommandlsRemote()
Return a command object to execute a ls-remote command
LsRemoteCommandlsRemoteRepository()
Return a command to list remote branches/tags without a local repository.
MergeCommandmerge()
Return a command object to execute a Merge command
AddNoteCommandnotesAdd()
Return a command to add notes to an object
ListNotesCommandnotesList()
Return a command to list all notes
RemoveNoteCommandnotesRemove()
Return a command to remove notes on an object
ShowNoteCommandnotesShow()
Return a command to show notes on an object
Gitopen(File dir)
Open repository
Gitopen(File dir, FS fs)
Open repository
PullCommandpull()
Return a command object to execute a Pull command
PushCommandpush()
Return a command object to execute a Push command
RebaseCommandrebase()
Return a command object to execute a Rebase command
ReflogCommandreflog()
Return a command object to execute a reflog command
RemoteAddCommandremoteAdd()
Return a command used to add a new remote.
RemoteListCommandremoteList()
Return a command used to list the available remotes.
RemoteRemoveCommandremoteRemove()
Return a command used to remove an existing remote.
ResetCommandreset()
Return a command object to execute a reset command
RmCommandrm()
Return a command object to execute a rm command
StashApplyCommandstashApply()
Returs a command object used to apply a stashed commit
StashCreateCommandstashCreate()
Return a command object used to create a stashed commit
StashDropCommandstashDrop()
Return a command object used to drop a stashed commit
StashListCommandstashList()
Return a command object used to list stashed commits
StatusCommandstatus()
Return a command object to execute a status command
SubmoduleInitCommandsubmoduleInit()
Return a command object to execute a submodule init command
SubmoduleUpdateCommandsubmoduleUpdate()
Return a command object to execute a submodule update command
TagCommandtag()
Return a command object to execute a Tag command
DeleteTagCommandtagDelete()
Return a command object used to delete tags
ListTagCommandtagList()
Return a command object used to list tags
Gitwrap(Repository repo)
Wrap repository