| Package | Description |
|---|---|
| hudson.plugins.git |
Compatibility package provided for legacy git client API users.
|
| org.jenkinsci.plugins.gitclient |
Core classes for git client API implementation.
|
| org.jenkinsci.plugins.gitclient.cgit |
Git client API implementation with cgit.
|
| Modifier and Type | Class and Description |
|---|---|
class |
GitLockFailedException
Exception which reports failure to lock a git repository.
|
| Modifier and Type | Method and Description |
|---|---|
void |
GitAPI.add(String filePattern)
Deprecated.
add.
|
void |
GitAPI.branch(String name)
Deprecated.
branch.
|
void |
IGitAPI.changelog(String revFrom,
String revTo,
OutputStream fos)
Deprecated.
changelog.
|
void |
GitAPI.checkout(String ref)
Deprecated.
Checks out the specified commit/tag/branch into the workspace.
|
void |
GitAPI.checkout(String ref,
String branch)
Deprecated.
Creates a new branch that points to the specified ref.
|
void |
IGitAPI.checkoutBranch(String branch,
String commitish)
Deprecated.
Regardless of the current state of the workspace (whether there is some dirty files, etc)
and the state of the repository (whether the branch of the specified name exists or not),
when this method exits the following conditions hold:
The branch of the specified name branch exists and points to the specified ref
HEAD points to branch. |
void |
GitAPI.clean()
Deprecated.
Remove untracked files and directories, including files listed
in the ignore rules.
|
void |
IGitAPI.clone(RemoteConfig source)
Deprecated.
Clone repository from source to this repository.
|
void |
IGitAPI.clone(RemoteConfig rc,
boolean useShallowClone)
Deprecated.
Clone repository from
RemoteConfig rc to this repository. |
void |
GitAPI.commit(String message)
Deprecated.
commit.
|
void |
GitAPI.commit(String message,
PersonIdent author,
PersonIdent committer)
Deprecated.
commit.
|
void |
GitAPI.deleteBranch(String name)
Deprecated.
(force) delete a branch.
|
void |
GitAPI.deleteTag(String tagName)
Deprecated.
deleteTag.
|
void |
IGitAPI.fetch()
Deprecated.
Retrieve commits from default remote.
|
void |
GitAPI.fetch(String remoteName,
RefSpec... refspec)
Deprecated.
fetch.
|
void |
GitAPI.fetch(String remoteName,
RefSpec refspec)
Deprecated.
fetch.
|
void |
IGitAPI.fetch(String repository,
String refspec)
Deprecated.
Retrieve commits based on refspec from repository.
|
void |
GitAPI.fetch(URIish url,
List<RefSpec> refspecs)
Deprecated.
Fetch commits from url which match any of the passed in
refspecs.
|
void |
IGitAPI.fixSubmoduleUrls(String remote,
hudson.model.TaskListener listener)
Deprecated.
fixSubmoduleUrls.
|
Set<Branch> |
GitAPI.getBranches()
Deprecated.
Returns the set of branches defined in this repository,
including local branches and remote branches.
|
List<Branch> |
IGitAPI.getBranchesContaining(String revspec)
Deprecated.
|
String |
IGitAPI.getDefaultRemote(String _default_)
Deprecated.
Returns name of default remote.
|
Set<Branch> |
GitAPI.getRemoteBranches()
Deprecated.
Returns the remote branches defined in this repository.
|
String |
GitAPI.getRemoteUrl(String name)
Deprecated.
From a given repository, get a remote's URL
|
String |
IGitAPI.getRemoteUrl(String name,
String GIT_DIR)
Deprecated.
Returns URL of remote name in repository GIT_DIR.
|
Repository |
GitAPI.getRepository()
Deprecated.
Returns the
Repository used by this git instance. |
String |
IGitAPI.getSubmoduleUrl(String name)
Deprecated.
Returns URL of the named submodule.
|
String |
GitAPI.getTagMessage(String tagName)
Deprecated.
getTagMessage.
|
List<Tag> |
IGitAPI.getTagsOnCommit(String revName)
Deprecated.
getTagsOnCommit.
|
boolean |
IGitAPI.hasGitModules(String treeIsh)
Deprecated.
Returns true if this repository has submodules.
|
boolean |
GitAPI.hasGitRepo()
Deprecated.
hasGitRepo.
|
void |
GitAPI.init()
Deprecated.
Initialize an empty repository for further git operations.
|
boolean |
IGitAPI.isBareRepository()
Deprecated.
Returns true if this repositry is bare.
|
boolean |
IGitAPI.isBareRepository(String GIT_DIR)
Deprecated.
Detect whether a repository at the given path is bare or not.
|
boolean |
GitAPI.isCommitInRepo(ObjectId commit)
Deprecated.
isCommitInRepo.
|
List<IndexEntry> |
IGitAPI.lsTree(String treeIsh)
Deprecated.
Use
IGitAPI.lsTree(String, boolean) to be explicit about the recursion behaviour. |
List<IndexEntry> |
IGitAPI.lsTree(String treeIsh,
boolean recursive)
Deprecated.
lsTree.
|
void |
IGitAPI.merge(String revSpec)
Deprecated.
Merge commits from revspec into the current branch.
|
void |
IGitAPI.push(RemoteConfig repository,
String revspec)
Deprecated.
Push revspec to repository.
|
void |
GitAPI.push(String remoteName,
String refspec)
Deprecated.
push.
|
void |
IGitAPI.reset()
Deprecated.
Reset the contents of the working directory of this
repository.
|
void |
IGitAPI.reset(boolean hard)
Deprecated.
Reset the contents of the working directory of this
repository.
|
List<ObjectId> |
IGitAPI.revListBranch(String branchId)
Deprecated.
revListBranch.
|
ObjectId |
GitAPI.revParse(String revName)
Deprecated.
Retrieve commit object that is direct child for
revName revision reference. |
void |
GitAPI.setRemoteUrl(String name,
String url)
Deprecated.
For a given repository, set a remote's URL
|
void |
IGitAPI.setRemoteUrl(String name,
String url,
String GIT_DIR)
Deprecated.
Set remote repository name and URL.
|
void |
IGitAPI.setSubmoduleUrl(String name,
String url)
Deprecated.
Sets URL of the named submodule.
|
void |
IGitAPI.setupSubmoduleUrls(String remote,
hudson.model.TaskListener listener)
Deprecated.
|
List<String> |
IGitAPI.showRevision(Revision r)
Deprecated.
showRevision.
|
void |
IGitAPI.submoduleSync()
Deprecated.
Synchronizes submodules' remote URL configuration setting to
the value specified in .gitmodules.
|
void |
GitAPI.tag(String tagName,
String comment)
Deprecated.
Create (or update) a tag.
|
boolean |
GitAPI.tagExists(String tagName)
Deprecated.
tagExists.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CliGitAPIImpl.add(String filePattern)
add.
|
void |
JGitAPIImpl.add(String filePattern)
add.
|
void |
GitClient.add(String filePattern)
add.
|
void |
CliGitAPIImpl.addNote(String note,
String namespace)
Adds a new git-note on the current HEAD commit.
|
void |
JGitAPIImpl.addNote(String note,
String namespace)
Adds a new git-note on the current HEAD commit.
|
void |
GitClient.addNote(String note,
String namespace)
Adds a new git-note on the current HEAD commit.
|
void |
CliGitAPIImpl.addRemoteUrl(String name,
String url)
addRemoteUrl.
|
void |
JGitAPIImpl.addRemoteUrl(String name,
String url)
addRemoteUrl.
|
void |
GitClient.addRemoteUrl(String name,
String url)
addRemoteUrl.
|
void |
CliGitAPIImpl.addSubmodule(String remoteURL,
String subdir)
Create a submodule in subdir child directory for remote repository
|
void |
JGitAPIImpl.addSubmodule(String remoteURL,
String subdir)
Create a submodule in subdir child directory for remote repository
|
void |
GitClient.addSubmodule(String remoteURL,
String subdir)
Create a submodule in subdir child directory for remote repository
|
void |
CliGitAPIImpl.appendNote(String note,
String namespace)
Appends to an existing git-note on the current HEAD commit.
|
void |
JGitAPIImpl.appendNote(String note,
String namespace)
Appends to an existing git-note on the current HEAD commit.
|
void |
GitClient.appendNote(String note,
String namespace)
Appends to an existing git-note on the current HEAD commit.
|
void |
CliGitAPIImpl.branch(String name)
branch.
|
void |
JGitAPIImpl.branch(String name)
branch.
|
void |
GitClient.branch(String name)
branch.
|
void |
GitClient.changelog(String revFrom,
String revTo,
OutputStream os)
Deprecated.
|
void |
GitClient.changelog(String revFrom,
String revTo,
Writer os)
Adds the changelog entries for commits in the range revFrom..revTo.
|
void |
GitClient.checkout(String ref)
Deprecated.
use
GitClient.checkout() and CheckoutCommand |
void |
GitClient.checkout(String ref,
String branch)
Deprecated.
use
GitClient.checkout() and CheckoutCommand |
void |
GitClient.checkoutBranch(String branch,
String ref)
Regardless of the current state of the workspace (whether there is some dirty files, etc)
and the state of the repository (whether the branch of the specified name exists or not),
when this method exits the following conditions hold:
The branch of the specified name branch exists and points to the specified ref
HEAD points to branch. |
void |
CliGitAPIImpl.clean()
Remove untracked files and directories, including files listed
in the ignore rules.
|
void |
JGitAPIImpl.clean()
clean.
|
void |
GitClient.clean()
Fully revert working copy to a clean state, i.e.
|
void |
CliGitAPIImpl.clean(boolean cleanSubmodule)
Remove untracked files and directories, including files listed
in the ignore rules.
|
void |
JGitAPIImpl.clean(boolean cleanSubmodule)
clean.
|
void |
GitClient.clean(boolean cleanSubmodule)
Fully revert working copy to a clean state, i.e.
|
void |
GitClient.clone(String url,
String origin,
boolean useShallowClone,
String reference)
Clone a remote repository
|
void |
CliGitAPIImpl.commit(String message)
commit.
|
void |
JGitAPIImpl.commit(String message)
commit.
|
void |
GitClient.commit(String message)
commit.
|
void |
GitClient.commit(String message,
PersonIdent author,
PersonIdent committer)
Deprecated.
as of 1.1
Use
GitClient.setAuthor(String, String) and GitClient.setCommitter(String, String)
then call GitClient.commit(String) |
void |
CliGitAPIImpl.deleteBranch(String name)
(force) delete a branch.
|
void |
JGitAPIImpl.deleteBranch(String name)
(force) delete a branch.
|
void |
GitClient.deleteBranch(String name)
(force) delete a branch.
|
void |
CliGitAPIImpl.deleteRef(String refName)
Deletes a ref.
|
void |
JGitAPIImpl.deleteRef(String refName)
Deletes a ref.
|
void |
GitClient.deleteRef(String refName)
Deletes a ref.
|
void |
CliGitAPIImpl.deleteTag(String tagName)
deleteTag.
|
void |
JGitAPIImpl.deleteTag(String tagName)
deleteTag.
|
void |
GitClient.deleteTag(String tagName)
deleteTag.
|
String |
CliGitAPIImpl.describe(String commitIsh)
Equivalent of "git-describe --tags".
|
String |
JGitAPIImpl.describe(String tip)
Equivalent of "git-describe --tags".
|
String |
GitClient.describe(String commitIsh)
Equivalent of "git-describe --tags".
|
void |
GitCommand.execute()
Executes the command.
|
void |
CliGitAPIImpl.fetch(String remoteName,
RefSpec... refspec)
fetch.
|
void |
JGitAPIImpl.fetch(String remoteName,
RefSpec... refspec)
fetch.
|
void |
GitClient.fetch(String remoteName,
RefSpec... refspec)
Deprecated.
use
GitClient.fetch_() and configure a FetchCommand |
void |
CliGitAPIImpl.fetch(String remoteName,
RefSpec refspec)
fetch.
|
void |
JGitAPIImpl.fetch(String remoteName,
RefSpec refspec)
fetch.
|
void |
GitClient.fetch(String remoteName,
RefSpec refspec)
Deprecated.
use
GitClient.fetch_() and configure a FetchCommand |
void |
CliGitAPIImpl.fetch(URIish url,
List<RefSpec> refspecs)
Fetch commits from url which match any of the passed in
refspecs.
|
void |
JGitAPIImpl.fetch(URIish url,
List<RefSpec> refspecs)
Fetch commits from url which match any of the passed in
refspecs.
|
void |
GitClient.fetch(URIish url,
List<RefSpec> refspecs)
Deprecated.
use
GitClient.fetch_() and configure a FetchCommand |
void |
CliGitAPIImpl.fixSubmoduleUrls(String remote,
hudson.model.TaskListener listener)
fixSubmoduleUrls.
|
void |
JGitAPIImpl.fixSubmoduleUrls(String remote,
hudson.model.TaskListener listener)
Deprecated.
|
Set<Branch> |
CliGitAPIImpl.getBranches()
Returns the set of branches defined in this repository,
including local branches and remote branches.
|
Set<Branch> |
JGitAPIImpl.getBranches()
getBranches.
|
Set<Branch> |
GitClient.getBranches()
getBranches.
|
List<Branch> |
CliGitAPIImpl.getBranchesContaining(String revspec)
Deprecated.
|
List<Branch> |
JGitAPIImpl.getBranchesContaining(String revspec)
Find all the branches that include the given commit.
|
List<Branch> |
CliGitAPIImpl.getBranchesContaining(String revspec,
boolean allBranches)
Find all the branches that include the given commit.
|
List<Branch> |
JGitAPIImpl.getBranchesContaining(String revspec,
boolean allBranches)
Find all the branches that include the given commit.
|
List<Branch> |
GitClient.getBranchesContaining(String revspec,
boolean allBranches)
Find all the branches that include the given commit.
|
Set<Branch> |
JGitAPIImpl.getBranchesInternal(ListBranchCommand.ListMode mode) |
String |
CliGitAPIImpl.getDefaultRemote()
Get the default remote.
|
String |
CliGitAPIImpl.getDefaultRemote(String _default_)
Returns name of default remote.
|
String |
JGitAPIImpl.getDefaultRemote(String _default_)
Deprecated.
|
Map<String,ObjectId> |
CliGitAPIImpl.getHeadRev(String url)
getHeadRev.
|
Map<String,ObjectId> |
JGitAPIImpl.getHeadRev(String url)
getHeadRev.
|
Map<String,ObjectId> |
GitClient.getHeadRev(String url)
getHeadRev.
|
ObjectId |
CliGitAPIImpl.getHeadRev(String url,
String branchSpec)
getHeadRev.
|
ObjectId |
JGitAPIImpl.getHeadRev(String remoteRepoUrl,
String branchSpec)
getHeadRev.
|
ObjectId |
GitClient.getHeadRev(String remoteRepoUrl,
String branch)
getHeadRev.
|
Set<String> |
CliGitAPIImpl.getRefNames(String refPrefix)
List refs with the given prefix.
|
Set<String> |
JGitAPIImpl.getRefNames(String refPrefix)
List refs with the given prefix.
|
Set<String> |
GitClient.getRefNames(String refPrefix)
List refs with the given prefix.
|
Set<Branch> |
CliGitAPIImpl.getRemoteBranches()
Returns the remote branches defined in this repository.
|
Set<Branch> |
JGitAPIImpl.getRemoteBranches()
getRemoteBranches.
|
Set<Branch> |
GitClient.getRemoteBranches()
getRemoteBranches.
|
Map<String,ObjectId> |
CliGitAPIImpl.getRemoteReferences(String url,
String pattern,
boolean headsOnly,
boolean tagsOnly)
List references in a remote repository.
|
Map<String,ObjectId> |
JGitAPIImpl.getRemoteReferences(String url,
String pattern,
boolean headsOnly,
boolean tagsOnly)
List references in a remote repository.
|
Map<String,ObjectId> |
GitClient.getRemoteReferences(String remoteRepoUrl,
String pattern,
boolean headsOnly,
boolean tagsOnly)
List references in a remote repository.
|
Map<String,String> |
CliGitAPIImpl.getRemoteSymbolicReferences(String url,
String pattern) |
Map<String,String> |
JGitAPIImpl.getRemoteSymbolicReferences(String url,
String pattern) |
Map<String,String> |
GitClient.getRemoteSymbolicReferences(String remoteRepoUrl,
String pattern)
List symbolic references in a remote repository.
|
Set<String> |
CliGitAPIImpl.getRemoteTagNames(String tagPattern)
getRemoteTagNames.
|
Set<String> |
JGitAPIImpl.getRemoteTagNames(String tagPattern)
getRemoteTagNames.
|
Set<String> |
GitClient.getRemoteTagNames(String tagPattern)
getRemoteTagNames.
|
String |
CliGitAPIImpl.getRemoteUrl(String name)
From a given repository, get a remote's URL
|
String |
JGitAPIImpl.getRemoteUrl(String name)
From a given repository, get a remote's URL
|
String |
GitClient.getRemoteUrl(String name)
From a given repository, get a remote's URL
|
String |
CliGitAPIImpl.getRemoteUrl(String name,
String GIT_DIR)
Returns URL of remote name in repository GIT_DIR.
|
String |
JGitAPIImpl.getRemoteUrl(String name,
String GIT_DIR)
Deprecated.
|
Repository |
CliGitAPIImpl.getRepository()
Returns the
Repository used by this git instance. |
Repository |
JGitAPIImpl.getRepository()
getRepository.
|
Repository |
GitClient.getRepository()
Deprecated.
as of 1.1
This method was deprecated to make
GitClient remotable. When called on
a proxy object, this method throws NotSerializableException.
Use GitClient.withRepository(RepositoryCallback) to pass in the closure instead.
This prevents the repository leak (JENKINS-12188), too. |
String |
CliGitAPIImpl.getSubmodulePath(String name)
Get submodule path.
|
List<IndexEntry> |
CliGitAPIImpl.getSubmodules(String treeIsh)
Finds all the submodule references in this repository at the specified tree.
|
List<IndexEntry> |
JGitAPIImpl.getSubmodules(String treeIsh)
Finds all the submodule references in this repository at the specified tree.
|
List<IndexEntry> |
GitClient.getSubmodules(String treeIsh)
Finds all the submodule references in this repository at the specified tree.
|
String |
CliGitAPIImpl.getSubmoduleUrl(String name)
Returns URL of the named submodule.
|
String |
JGitAPIImpl.getSubmoduleUrl(String name)
Deprecated.
|
String |
CliGitAPIImpl.getTagMessage(String tagName)
getTagMessage.
|
String |
JGitAPIImpl.getTagMessage(String tagName)
getTagMessage.
|
String |
GitClient.getTagMessage(String tagName)
getTagMessage.
|
Set<String> |
CliGitAPIImpl.getTagNames(String tagPattern)
getTagNames.
|
Set<String> |
JGitAPIImpl.getTagNames(String tagPattern)
getTagNames.
|
Set<String> |
GitClient.getTagNames(String tagPattern)
getTagNames.
|
Set<GitObject> |
CliGitAPIImpl.getTags()
Return name and object ID of all tags in current repository.
|
Set<GitObject> |
JGitAPIImpl.getTags()
Return name and object ID of all tags in current repository.
|
Set<GitObject> |
GitClient.getTags()
Return name and object ID of all tags in current repository.
|
boolean |
GitClient.hasGitModules()
Returns true if the repository has Git submodules.
|
boolean |
CliGitAPIImpl.hasGitRepo()
hasGitRepo.
|
boolean |
JGitAPIImpl.hasGitRepo()
hasGitRepo.
|
boolean |
GitClient.hasGitRepo()
hasGitRepo.
|
boolean |
CliGitAPIImpl.hasGitRepo(String GIT_DIR)
Returns true if the parameter GIT_DIR is a directory which
contains a git repository.
|
void |
CliGitAPIImpl.init()
Initialize an empty repository for further git operations.
|
void |
JGitAPIImpl.init()
init.
|
void |
GitClient.init()
init.
|
boolean |
CliGitAPIImpl.isBareRepository(String GIT_DIR)
Detect whether a repository at the given path is bare or not.
|
boolean |
JGitAPIImpl.isBareRepository(String GIT_DIR)
Deprecated.
|
boolean |
JGitAPIImpl.isCommitInRepo(ObjectId commit)
isCommitInRepo.
|
boolean |
GitClient.isCommitInRepo(ObjectId commit)
isCommitInRepo.
|
String |
CliGitAPIImpl.launchCommand(hudson.util.ArgumentListBuilder args)
Launch command using the workspace as working directory
|
String |
CliGitAPIImpl.launchCommand(String... args)
Launch command using the workspace as working directory
|
List<IndexEntry> |
CliGitAPIImpl.lsTree(String treeIsh,
boolean recursive)
lsTree.
|
List<IndexEntry> |
JGitAPIImpl.lsTree(String treeIsh,
boolean recursive)
Deprecated.
|
void |
GitClient.merge(ObjectId rev)
Deprecated.
use
GitClient.merge() and configure a MergeCommand |
void |
CliGitAPIImpl.merge(String refSpec)
Deprecated.
|
void |
JGitAPIImpl.merge(String refSpec)
Deprecated.
|
void |
CliGitAPIImpl.prune(RemoteConfig repository)
Prune stale remote tracking branches with "git remote prune" on the specified remote.
|
void |
JGitAPIImpl.prune(RemoteConfig repository)
Prune stale remote tracking branches with "git remote prune" on the specified remote.
|
void |
GitClient.prune(RemoteConfig repository)
Prune stale remote tracking branches with "git remote prune" on the specified remote.
|
void |
CliGitAPIImpl.push(RemoteConfig repository,
String refspec)
Deprecated.
|
void |
JGitAPIImpl.push(RemoteConfig repository,
String refspec)
Deprecated.
|
void |
GitClient.push(String remoteName,
String refspec)
Deprecated.
use
GitClient.push() and configure a PushCommand |
void |
GitClient.push(URIish url,
String refspec)
Deprecated.
use
GitClient.push() and configure a PushCommand |
void |
CliGitAPIImpl.ref(String refName)
Create (or update) a ref.
|
void |
JGitAPIImpl.ref(String refName)
Create (or update) a ref.
|
void |
GitClient.ref(String refName)
Create (or update) a ref.
|
boolean |
CliGitAPIImpl.refExists(String refName)
Check if a ref exists.
|
boolean |
JGitAPIImpl.refExists(String refName)
Check if a ref exists.
|
boolean |
GitClient.refExists(String refName)
Check if a ref exists.
|
void |
CliGitAPIImpl.reset(boolean hard)
Reset the contents of the working directory of this
repository.
|
void |
JGitAPIImpl.reset(boolean hard)
Deprecated.
|
List<ObjectId> |
CliGitAPIImpl.revList(String ref)
revList.
|
List<ObjectId> |
JGitAPIImpl.revList(String ref)
revList.
|
List<ObjectId> |
GitClient.revList(String ref)
revList.
|
List<ObjectId> |
CliGitAPIImpl.revListAll()
revListAll.
|
List<ObjectId> |
JGitAPIImpl.revListAll()
revListAll.
|
List<ObjectId> |
GitClient.revListAll()
revListAll.
|
ObjectId |
CliGitAPIImpl.revParse(String revName)
Retrieve commit object that is direct child for
revName revision reference. |
ObjectId |
JGitAPIImpl.revParse(String revName)
Retrieve commit object that is direct child for
revName revision reference. |
ObjectId |
GitClient.revParse(String revName)
Retrieve commit object that is direct child for
revName revision reference. |
void |
GitClient.setAuthor(PersonIdent p)
setAuthor.
|
void |
CliGitAPIImpl.setAuthor(String name,
String email)
Sets the identity of the author for future commits and merge operations.
|
void |
JGitAPIImpl.setAuthor(String name,
String email)
Sets the identity of the author for future commits and merge operations.
|
void |
GitClient.setAuthor(String name,
String email)
Sets the identity of the author for future commits and merge operations.
|
void |
GitClient.setCommitter(PersonIdent p)
setCommitter.
|
void |
CliGitAPIImpl.setCommitter(String name,
String email)
Sets the identity of the committer for future commits and merge operations.
|
void |
JGitAPIImpl.setCommitter(String name,
String email)
Sets the identity of the committer for future commits and merge operations.
|
void |
GitClient.setCommitter(String name,
String email)
Sets the identity of the committer for future commits and merge operations.
|
void |
CliGitAPIImpl.setRemoteUrl(String name,
String url)
For a given repository, set a remote's URL
|
void |
JGitAPIImpl.setRemoteUrl(String name,
String url)
For a given repository, set a remote's URL
|
void |
GitClient.setRemoteUrl(String name,
String url)
For a given repository, set a remote's URL
|
void |
CliGitAPIImpl.setRemoteUrl(String name,
String url,
String GIT_DIR)
Set remote repository name and URL.
|
void |
JGitAPIImpl.setRemoteUrl(String name,
String url,
String GIT_DIR)
Deprecated.
|
void |
CliGitAPIImpl.setSubmoduleUrl(String name,
String url)
Sets URL of the named submodule.
|
void |
JGitAPIImpl.setSubmoduleUrl(String name,
String url)
Deprecated.
|
void |
CliGitAPIImpl.setupSubmoduleUrls(Revision rev,
hudson.model.TaskListener listener)
Set up submodule URLs so that they correspond to the remote pertaining to
the revision that has been checked out.
|
void |
JGitAPIImpl.setupSubmoduleUrls(Revision rev,
hudson.model.TaskListener listener)
Deprecated.
|
void |
GitClient.setupSubmoduleUrls(Revision rev,
hudson.model.TaskListener listener)
Set up submodule URLs so that they correspond to the remote pertaining to
the revision that has been checked out.
|
List<String> |
GitClient.showRevision(ObjectId r)
Given a Revision, show it as if it were an entry from git whatchanged, so that it
can be parsed by GitChangeLogParser.
|
List<String> |
CliGitAPIImpl.showRevision(ObjectId from,
ObjectId to)
Given a Revision, show it as if it were an entry from git whatchanged, so that it
can be parsed by GitChangeLogParser.
|
List<String> |
JGitAPIImpl.showRevision(ObjectId from,
ObjectId to)
Given a Revision, show it as if it were an entry from git whatchanged, so that it
can be parsed by GitChangeLogParser.
|
List<String> |
GitClient.showRevision(ObjectId from,
ObjectId to)
Given a Revision, show it as if it were an entry from git whatchanged, so that it
can be parsed by GitChangeLogParser.
|
List<String> |
CliGitAPIImpl.showRevision(ObjectId from,
ObjectId to,
Boolean useRawOutput)
Given a Revision, show it as if it were an entry from git whatchanged, so that it
can be parsed by GitChangeLogParser.
|
List<String> |
JGitAPIImpl.showRevision(ObjectId from,
ObjectId to,
Boolean useRawOutput)
Given a Revision, show it as if it were an entry from git whatchanged, so that it
can be parsed by GitChangeLogParser.
|
List<String> |
GitClient.showRevision(ObjectId from,
ObjectId to,
Boolean useRawOutput)
Given a Revision, show it as if it were an entry from git whatchanged, so that it
can be parsed by GitChangeLogParser.
|
void |
CliGitAPIImpl.submoduleClean(boolean recursive)
submoduleClean.
|
void |
JGitAPIImpl.submoduleClean(boolean recursive)
submoduleClean.
|
void |
GitClient.submoduleClean(boolean recursive)
submoduleClean.
|
void |
CliGitAPIImpl.submoduleInit()
submoduleInit.
|
void |
JGitAPIImpl.submoduleInit()
Deprecated.
|
void |
GitClient.submoduleInit()
submoduleInit.
|
void |
CliGitAPIImpl.submoduleReset(boolean recursive,
boolean hard)
Reset submodules
|
void |
CliGitAPIImpl.submoduleSync()
Sync submodule URLs
|
void |
JGitAPIImpl.submoduleSync()
Deprecated.
|
void |
GitClient.submoduleUpdate(boolean recursive)
Deprecated.
|
void |
GitClient.submoduleUpdate(boolean recursive,
boolean remoteTracking)
Deprecated.
|
void |
GitClient.submoduleUpdate(boolean recursive,
boolean remoteTracking,
String reference)
Deprecated.
|
void |
GitClient.submoduleUpdate(boolean recursive,
String reference)
Deprecated.
|
void |
CliGitAPIImpl.tag(String tagName,
String comment)
Create (or update) a tag.
|
void |
JGitAPIImpl.tag(String name,
String message)
Create (or update) a tag.
|
void |
GitClient.tag(String tagName,
String comment)
Create (or update) a tag.
|
boolean |
CliGitAPIImpl.tagExists(String tagName)
tagExists.
|
boolean |
JGitAPIImpl.tagExists(String tagName)
tagExists.
|
boolean |
GitClient.tagExists(String tagName)
tagExists.
|
ObjectId |
CliGitAPIImpl.validateRevision(String revName)
validateRevision.
|
| Modifier and Type | Method and Description |
|---|---|
<T> void |
GitCommandsExecutor.invokeAll(Collection<Callable<T>> commands) |
Copyright © 2013–2020. All rights reserved.