Uses of Class
org.eclipse.jgit.transport.RemoteRefUpdate
-
Packages that use RemoteRefUpdate Package Description org.eclipse.jgit.hooks org.eclipse.jgit.junit.http org.eclipse.jgit.lfs org.eclipse.jgit.transport Transport (fetch/push) for different protocols. -
-
Uses of RemoteRefUpdate in org.eclipse.jgit.hooks
Method parameters in org.eclipse.jgit.hooks with type arguments of type RemoteRefUpdate Modifier and Type Method Description void
PrePushHook. setRefs(Collection<RemoteRefUpdate> toRefs)
Set Refs -
Uses of RemoteRefUpdate in org.eclipse.jgit.junit.http
Methods in org.eclipse.jgit.junit.http that return types with arguments of type RemoteRefUpdate Modifier and Type Method Description protected static Collection<RemoteRefUpdate>
HttpTestCase. push(TestRepository from, RevCommit q)
Push a commit -
Uses of RemoteRefUpdate in org.eclipse.jgit.lfs
Method parameters in org.eclipse.jgit.lfs with type arguments of type RemoteRefUpdate Modifier and Type Method Description void
LfsPrePushHook. setRefs(Collection<RemoteRefUpdate> toRefs)
-
Uses of RemoteRefUpdate in org.eclipse.jgit.transport
Methods in org.eclipse.jgit.transport that return RemoteRefUpdate Modifier and Type Method Description RemoteRefUpdate
PushResult. getRemoteUpdate(String refName)
Get status of specific remote ref update by remote ref name.Methods in org.eclipse.jgit.transport that return types with arguments of type RemoteRefUpdate Modifier and Type Method Description Collection<RemoteRefUpdate>
Transport. findRemoteRefUpdatesFor(Collection<RefSpec> specs)
Convert push remote refs update specification fromRefSpec
form toRemoteRefUpdate
.Collection<RemoteRefUpdate>
Transport. findRemoteRefUpdatesFor(Collection<RefSpec> specs, Map<String,RefLeaseSpec> leases)
Convert push remote refs update specification fromRefSpec
form toRemoteRefUpdate
.static Collection<RemoteRefUpdate>
Transport. findRemoteRefUpdatesFor(Repository db, Collection<RefSpec> specs, Collection<RefSpec> fetchSpecs)
Convert push remote refs update specification fromRefSpec
form toRemoteRefUpdate
.static Collection<RemoteRefUpdate>
Transport. findRemoteRefUpdatesFor(Repository db, Collection<RefSpec> specs, Map<String,RefLeaseSpec> leases, Collection<RefSpec> fetchSpecs)
Convert push remote refs update specification fromRefSpec
form toRemoteRefUpdate
.Collection<RemoteRefUpdate>
PushResult. getRemoteUpdates()
Get status of remote refs updates.Method parameters in org.eclipse.jgit.transport with type arguments of type RemoteRefUpdate Modifier and Type Method Description protected void
BasePackPushConnection. doPush(ProgressMonitor monitor, Map<String,RemoteRefUpdate> refUpdates, OutputStream outputStream)
Push one or more objects and update the remote repository.void
BasePackPushConnection. push(ProgressMonitor monitor, Map<String,RemoteRefUpdate> refUpdates)
Pushes to the remote repository basing on provided specification.void
BasePackPushConnection. push(ProgressMonitor monitor, Map<String,RemoteRefUpdate> refUpdates, OutputStream outputStream)
Pushes to the remote repository basing on provided specification.void
PushConnection. push(ProgressMonitor monitor, Map<String,RemoteRefUpdate> refUpdates)
Pushes to the remote repository basing on provided specification.void
PushConnection. push(ProgressMonitor monitor, Map<String,RemoteRefUpdate> refUpdates, OutputStream out)
Pushes to the remote repository basing on provided specification.PushResult
Transport. push(ProgressMonitor monitor, Collection<RemoteRefUpdate> toPush)
Push objects and refs from the local repository to the remote one.PushResult
Transport. push(ProgressMonitor monitor, Collection<RemoteRefUpdate> toPush, OutputStream out)
Push objects and refs from the local repository to the remote one.Constructors in org.eclipse.jgit.transport with parameters of type RemoteRefUpdate Constructor Description RemoteRefUpdate(RemoteRefUpdate base, ObjectId newExpectedOldObjectId)
Create a new instance of this object basing on existing instance for configuration.
-