Uses of Class
org.eclipse.jgit.transport.RefSpec
-
Packages that use RefSpec Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.junit.http org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.pgm org.eclipse.jgit.pgm.opt org.eclipse.jgit.transport Transport (fetch/push) for different protocols. -
-
Uses of RefSpec in org.eclipse.jgit.api
Fields in org.eclipse.jgit.api with type parameters of type RefSpec Modifier and Type Field Description private java.util.List<RefSpec>FetchCommand. refSpecsprivate java.util.List<RefSpec>PushCommand. refSpecsMethods in org.eclipse.jgit.api that return types with arguments of type RefSpec Modifier and Type Method Description private java.util.List<RefSpec>FetchCommand. applyOptions(java.util.List<RefSpec> refSpecs2)private java.util.List<RefSpec>CloneCommand. calculateRefSpecs(CloneCommand.FETCH_TYPE type, java.lang.String remoteName)java.util.List<RefSpec>FetchCommand. getRefSpecs()Get list ofRefSpecsjava.util.List<RefSpec>PushCommand. getRefSpecs()GetRefSpecs.Methods in org.eclipse.jgit.api with parameters of type RefSpec Modifier and Type Method Description FetchCommandFetchCommand. setRefSpecs(RefSpec... specs)The ref specs to be used in the fetch operationPushCommandPushCommand. setRefSpecs(RefSpec... specs)The ref specs to be used in the push operationMethod parameters in org.eclipse.jgit.api with type arguments of type RefSpec Modifier and Type Method Description private java.util.List<RefSpec>FetchCommand. applyOptions(java.util.List<RefSpec> refSpecs2)FetchCommandFetchCommand. setRefSpecs(java.util.List<RefSpec> specs)The ref specs to be used in the fetch operationPushCommandPushCommand. setRefSpecs(java.util.List<RefSpec> specs)The ref specs to be used in the push operation -
Uses of RefSpec in org.eclipse.jgit.junit.http
Methods in org.eclipse.jgit.junit.http that return types with arguments of type RefSpec Modifier and Type Method Description protected static java.util.Set<RefSpec>HttpTestCase. mirror(java.lang.String... refs)Mirror refs -
Uses of RefSpec in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib that return types with arguments of type RefSpec Modifier and Type Method Description java.util.List<RefSpec>Config. getRefSpecs(java.lang.String section, java.lang.String subsection, java.lang.String name)Parse a list ofRefSpecs from the configuration.java.util.List<RefSpec>DefaultTypedConfigGetter. getRefSpecs(Config config, java.lang.String section, java.lang.String subsection, java.lang.String name)java.util.List<RefSpec>TypedConfigGetter. getRefSpecs(Config config, java.lang.String section, java.lang.String subsection, java.lang.String name) -
Uses of RefSpec in org.eclipse.jgit.pgm
Fields in org.eclipse.jgit.pgm with type parameters of type RefSpec Modifier and Type Field Description private java.util.List<RefSpec>Push. refSpecsprivate java.util.List<RefSpec>Fetch. toget -
Uses of RefSpec in org.eclipse.jgit.pgm.opt
Constructor parameters in org.eclipse.jgit.pgm.opt with type arguments of type RefSpec Constructor Description RefSpecHandler(org.kohsuke.args4j.CmdLineParser parser, org.kohsuke.args4j.OptionDef option, org.kohsuke.args4j.spi.Setter<? super RefSpec> setter)Create a new handler for the command name. -
Uses of RefSpec in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as RefSpec Modifier and Type Field Description static RefSpecTransport. REFSPEC_PUSH_ALLSpecification for push operation, to push all refs under refs/heads.static RefSpecTransport. REFSPEC_TAGSSpecification for fetch or push operations, to fetch or push all tags.Fields in org.eclipse.jgit.transport with type parameters of type RefSpec Modifier and Type Field Description private java.util.List<RefSpec>RemoteConfig. fetchprivate java.util.List<RefSpec>Transport. fetchSpecifications to apply during fetch.private java.util.List<RefSpec>RemoteConfig. pushprivate java.util.List<RefSpec>Transport. pushSpecifications to apply during push.private java.util.Collection<RefSpec>FetchProcess. toFetchList of things we want to fetch from the remote repository.Methods in org.eclipse.jgit.transport that return RefSpec Modifier and Type Method Description RefSpecRefSpec. expandFromDestination(java.lang.String r)Expand this specification to exactly match a ref name.RefSpecRefSpec. expandFromDestination(Ref r)Expand this specification to exactly match a ref.private RefSpecRefSpec. expandFromDstImp(java.lang.String name)RefSpecRefSpec. expandFromSource(java.lang.String r)Expand this specification to exactly match a ref name.RefSpecRefSpec. expandFromSource(Ref r)Expand this specification to exactly match a ref.private RefSpecRefSpec. expandFromSourceImp(java.lang.String name)RefSpecRefSpec. setDestination(java.lang.String destination)Create a new RefSpec with a different destination name setting.RefSpecRefSpec. setForceUpdate(boolean forceUpdate)Create a new RefSpec with a different force update setting.RefSpecRefSpec. setSource(java.lang.String source)Create a new RefSpec with a different source name setting.RefSpecRefSpec. setSourceDestination(java.lang.String source, java.lang.String destination)Create a new RefSpec with a different source/destination name setting.Methods in org.eclipse.jgit.transport that return types with arguments of type RefSpec Modifier and Type Method Description private static java.util.Collection<RefSpec>Transport. expandPushWildcardsFor(Repository db, java.util.Collection<RefSpec> specs)java.util.List<RefSpec>RemoteConfig. getFetchRefSpecs()Remembered specifications for fetching from a repository.java.util.List<RefSpec>RemoteConfig. getPushRefSpecs()Remembered specifications for pushing to a repository.Methods in org.eclipse.jgit.transport with parameters of type RefSpec Modifier and Type Method Description booleanRemoteConfig. addFetchRefSpec(RefSpec s)Add a new fetch RefSpec to this remote.booleanRemoteConfig. addPushRefSpec(RefSpec s)Add a new push RefSpec to this remote.private TrackingRefUpdateFetchProcess. createUpdate(RefSpec spec, ObjectId newId)private voidFetchProcess. deleteTrackingRef(FetchResult result, BatchRefUpdate batch, RefSpec spec, Ref localRef)private voidFetchProcess. expandSingle(RefSpec spec, java.util.Set<Ref> matched)private voidFetchProcess. expandWildcard(RefSpec spec, java.util.Set<Ref> matched)booleanRemoteConfig. removeFetchRefSpec(RefSpec s)Remove a fetch RefSpec from this remote.booleanRemoteConfig. removePushRefSpec(RefSpec s)Remove a push RefSpec from this remote.private voidFetchProcess. want(Ref src, RefSpec spec)Method parameters in org.eclipse.jgit.transport with type arguments of type RefSpec Modifier and Type Method Description private static java.util.Collection<RefSpec>Transport. expandPushWildcardsFor(Repository db, java.util.Collection<RefSpec> specs)FetchResultTransport. fetch(ProgressMonitor monitor, java.util.Collection<RefSpec> toFetch)Fetch objects and refs from the remote repository to the local one.FetchResultTransport. fetch(ProgressMonitor monitor, java.util.Collection<RefSpec> toFetch, java.lang.String branch)Fetch objects and refs from the remote repository to the local one.java.util.Collection<RemoteRefUpdate>Transport. findRemoteRefUpdatesFor(java.util.Collection<RefSpec> specs)Convert push remote refs update specification fromRefSpecform toRemoteRefUpdate.java.util.Collection<RemoteRefUpdate>Transport. findRemoteRefUpdatesFor(java.util.Collection<RefSpec> specs, java.util.Map<java.lang.String,RefLeaseSpec> leases)Convert push remote refs update specification fromRefSpecform toRemoteRefUpdate.static java.util.Collection<RemoteRefUpdate>Transport. findRemoteRefUpdatesFor(Repository db, java.util.Collection<RefSpec> specs, java.util.Collection<RefSpec> fetchSpecs)Convert push remote refs update specification fromRefSpecform toRemoteRefUpdate.static java.util.Collection<RemoteRefUpdate>Transport. findRemoteRefUpdatesFor(Repository db, java.util.Collection<RefSpec> specs, java.util.Map<java.lang.String,RefLeaseSpec> leases, java.util.Collection<RefSpec> fetchSpecs)Convert push remote refs update specification fromRefSpecform toRemoteRefUpdate.private static java.lang.StringTransport. findTrackingRefName(java.lang.String remoteName, java.util.Collection<RefSpec> fetchSpecs)private FetchConnectionTransportHttp. getConnection(HttpConnection c, java.io.InputStream in, java.lang.String service, java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)private java.util.Collection<java.lang.String>BasePackConnection. getRefPrefixes(java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)protected voidBasePackConnection. lsRefs(java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)Issue a protocol V2 ls-refs command and read its response.private voidBasePackConnection. lsRefsImpl(java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)FetchConnectionTransport. openFetch(java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)Begins a new connection for fetching from the remote repository.FetchConnectionTransportGitAnon. openFetch(java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)FetchConnectionTransportGitSsh. openFetch(java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)FetchConnectionTransportHttp. openFetch(java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)FetchConnectionTransportLocal. openFetch(java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)voidRemoteConfig. setFetchRefSpecs(java.util.List<RefSpec> specs)Override existing fetch specifications with new ones.voidRemoteConfig. setPushRefSpecs(java.util.List<RefSpec> specs)Override existing push specifications with new ones.Constructors in org.eclipse.jgit.transport with parameters of type RefSpec Constructor Description RefSpec(RefSpec p)Constructor parameters in org.eclipse.jgit.transport with type arguments of type RefSpec Constructor Description FetchProcess(Transport t, java.util.Collection<RefSpec> f)ForkLocalFetchConnection(java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)SmartHttpFetchConnection(java.io.InputStream advertisement, java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)SshFetchConnection(java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)TcpFetchConnection(java.util.Collection<RefSpec> refSpecs, java.lang.String... additionalPatterns)
-