Uses of Class
org.eclipse.jgit.transport.FetchResult
-
Packages that use FetchResult Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.pgm org.eclipse.jgit.transport Transport (fetch/push) for different protocols. -
-
Uses of FetchResult in org.eclipse.jgit.api
Fields in org.eclipse.jgit.api declared as FetchResult Modifier and Type Field Description private FetchResult
PullResult. fetchResult
Methods in org.eclipse.jgit.api that return FetchResult Modifier and Type Method Description FetchResult
FetchCommand. call()
private FetchResult
CloneCommand. fetch(Repository clonedRepo, URIish u)
FetchResult
PullResult. getFetchResult()
Get fetch resultMethods in org.eclipse.jgit.api with parameters of type FetchResult Modifier and Type Method Description private void
CloneCommand. checkout(Repository clonedRepo, FetchResult result)
private void
FetchCommand. fetchSubmodules(FetchResult results)
private Ref
CloneCommand. findBranchToCheckout(FetchResult result)
Constructors in org.eclipse.jgit.api with parameters of type FetchResult Constructor Description PullResult(FetchResult fetchResult, java.lang.String fetchedFrom, MergeResult mergeResult)
PullResult(FetchResult fetchResult, java.lang.String fetchedFrom, RebaseResult rebaseResult)
-
Uses of FetchResult in org.eclipse.jgit.pgm
Methods in org.eclipse.jgit.pgm with parameters of type FetchResult Modifier and Type Method Description protected void
AbstractFetchCommand. showFetchResult(FetchResult r)
Show fetch result. -
Uses of FetchResult in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport with type parameters of type FetchResult Modifier and Type Field Description private java.util.Map<java.lang.String,FetchResult>
FetchResult. submodules
Methods in org.eclipse.jgit.transport that return FetchResult Modifier and Type Method Description FetchResult
Transport. fetch(ProgressMonitor monitor, java.util.Collection<RefSpec> toFetch)
Fetch objects and refs from the remote repository to the local one.Methods in org.eclipse.jgit.transport that return types with arguments of type FetchResult Modifier and Type Method Description java.util.Map<java.lang.String,FetchResult>
FetchResult. submoduleResults()
Get fetch results for submodules.Methods in org.eclipse.jgit.transport with parameters of type FetchResult Modifier and Type Method Description void
FetchResult. addSubmodule(java.lang.String path, FetchResult result)
Add fetch results for a submodule.private void
FetchProcess. addUpdateBatchCommands(FetchResult result, BatchRefUpdate batch)
private void
FetchProcess. closeConnection(FetchResult result)
private void
FetchProcess. deleteStaleTrackingRefs(FetchResult result, BatchRefUpdate batch)
private void
FetchProcess. deleteTrackingRef(FetchResult result, BatchRefUpdate batch, RefSpec spec, Ref localRef)
(package private) void
FetchProcess. execute(ProgressMonitor monitor, FetchResult result)
private void
FetchProcess. executeImp(ProgressMonitor monitor, FetchResult result)
private void
FetchProcess. updateFETCH_HEAD(FetchResult result)
-