Uses of Class
org.eclipse.jgit.transport.Transport
Packages that use Transport
Package
Description
High-level API commands (the porcelain of JGit).
Transport (fetch/push) for different protocols.
-
Uses of Transport in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type Transport -
Uses of Transport in org.eclipse.jgit.transport
Subclasses of Transport in org.eclipse.jgit.transportModifier and TypeClassDescriptionclassThe base class for transports that use HTTP as underlying protocol.classThe base class for transports that use SSH protocol.classThe base class for transports based on TCP sockets.private classclassTransport over the non-Git aware Amazon S3 protocol.(package private) classclassSingle shot fetch from a streamed Git bundle.(package private) classTransport through a git-daemon waiting for anonymous TCP connections.classTransport through an SSH tunnel.classTransport over HTTP and FTP protocols.(package private) classTransport to access a local directory as though it were a remote peer.classTransport over the non-Git aware SFTP (SSH based FTP) protocol.Fields in org.eclipse.jgit.transport declared as TransportModifier and TypeFieldDescriptionprotected final TransportBasePackConnection.transportA transport connected toBasePackConnection.uri.private final TransportBundleFetchConnection.transportprivate final TransportFetchProcess.transportTransport we will fetch over.private final TransportPushProcess.transportTransport used to perform this operation.private final TransportWalkPushConnection.transportThe configured transport we were constructed by.Methods in org.eclipse.jgit.transport that return TransportModifier and TypeMethodDescriptionTestProtocol.open(URIish uri, Repository local, String remoteName) Open a Transport instance to the other repository.static TransportTransport.open(Repository local, String remote) Open a new transport instance to connect two repositories.static TransportTransport.open(Repository local, String remote, Transport.Operation op) Open a new transport instance to connect two repositories.static TransportTransport.open(Repository local, RemoteConfig cfg) Open a new transport instance to connect two repositories.static TransportTransport.open(Repository local, RemoteConfig cfg, Transport.Operation op) Open a new transport instance to connect two repositories.static TransportTransport.open(Repository local, URIish uri) Open a new transport instance to connect two repositories.static TransportTransport.open(Repository local, URIish uri, String remoteName) Open a new transport instance to connect two repositories.static TransportOpen a new transport with no local repository.Open a new transport instance to the remote repository.abstract TransportTransportProtocol.open(URIish uri, Repository local, String remoteName) Open a Transport instance to the other repository.Methods in org.eclipse.jgit.transport that return types with arguments of type TransportModifier and TypeMethodDescriptionTransport.openAll(Repository local, String remote) Open new transport instances to connect two repositories.Transport.openAll(Repository local, String remote, Transport.Operation op) Open new transport instances to connect two repositories.Transport.openAll(Repository local, RemoteConfig cfg) Open new transport instances to connect two repositories.Transport.openAll(Repository local, RemoteConfig cfg, Transport.Operation op) Open new transport instances to connect two repositories.Constructors in org.eclipse.jgit.transport with parameters of type TransportModifierConstructorDescription(package private)BundleFetchConnection(Transport transportBundle, InputStream src) (package private)FetchProcess(Transport t, Collection<RefSpec> f) (package private)PushProcess(Transport transport, Collection<RemoteRefUpdate> toPush, PrePushHook prePush) Create process for specified transport and refs updates specification.(package private)PushProcess(Transport transport, Collection<RemoteRefUpdate> toPush, PrePushHook prePush, OutputStream out) Create process for specified transport and refs updates specification.