LinuxCommandLibrary

git-remote-fd

File descriptor transport helper for Git

TLDR

Use file descriptors for git

$ git clone "fd::[fd-in],[fd-out]"
copy
Use with pre-opened connections
$ git fetch "fd::17,18"
copy

SYNOPSIS

git-remote-fd url

DESCRIPTION

git-remote-fd is a remote helper that uses file descriptors for communication. The fd:: URL scheme allows Git to communicate over pre-established connections rather than opening new ones.
This enables integration with connection brokers, process supervisors, or other systems that manage connections externally. File descriptors must be pre-opened before invoking Git.

PARAMETERS

URL

fd:: URL with file descriptors.
FD-IN
Input file descriptor.
FD-OUT
Output file descriptor.
--help
Display help information.

CAVEATS

Advanced use case. File descriptors must be pre-opened. Used through fd:: URLs.

HISTORY

git-remote-fd is a Git remote helper for scenarios requiring pre-established communication channels.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community