Package | Description |
---|---|
org.eclipse.jgit.transport |
Transport (fetch/push) for different protocols.
|
Modifier and Type | Interface and Description |
---|---|
interface |
TransportBundle
Marker interface for transports that supports fetching from a git bundle
(sneaker-net object transport).
|
Modifier and Type | Class and Description |
---|---|
private class |
TestProtocol.TransportInternal |
(package private) class |
TransportBundleFile |
class |
TransportBundleStream
Single shot fetch from a streamed Git bundle.
|
(package private) class |
TransportGitAnon
Transport through a git-daemon waiting for anonymous TCP connections.
|
class |
TransportGitSsh
Transport through an SSH tunnel.
|
class |
TransportHttp
Transport over HTTP and FTP protocols.
|
(package private) class |
TransportLocal
Transport to access a local directory as though it were a remote peer.
|
Constructor and Description |
---|
BasePackConnection(PackTransport packTransport) |
BasePackFetchConnection(PackTransport packTransport)
Create a new connection to fetch using the native git transport.
|
BasePackPushConnection(PackTransport packTransport)
Create a new connection to push using the native git transport.
|
InternalFetchConnection(PackTransport transport,
UploadPackFactory<C> uploadPackFactory,
C req,
Repository remote)
Constructor for InternalFetchConnection.
|
InternalPushConnection(PackTransport transport,
ReceivePackFactory<C> receivePackFactory,
C req,
Repository remote)
Constructor for InternalPushConnection.
|