This adds two new remote helpers. * git-remote-fd, which connects to git service on given file descriptor(s), useful for graphical user interfaces that want to use internal ssh client. * git-remote-ext, which connect to git service using external program. Useful for connecting using odd one-off ssh options, to services in abstract namespace, using unix domain sockets, using TLS, etc... Changes from last time: * Coding style fixups Ilari Liusvaara (3): Add bidirectional_transfer_loop() git-remote-fd git-remote-ext .gitignore | 2 + Documentation/git-remote-ext.txt | 125 ++++++++++++++++++ Documentation/git-remote-fd.txt | 59 +++++++++ Makefile | 2 + builtin.h | 2 + builtin/remote-ext.c | 243 +++++++++++++++++++++++++++++++++++ builtin/remote-fd.c | 79 ++++++++++++ compat/mingw.h | 5 + git.c | 2 + transport-helper.c | 261 ++++++++++++++++++++++++++++++++++++++ transport.h | 1 + 11 files changed, 781 insertions(+), 0 deletions(-) create mode 100644 Documentation/git-remote-ext.txt create mode 100644 Documentation/git-remote-fd.txt create mode 100644 builtin/remote-ext.c create mode 100644 builtin/remote-fd.c -- 1.7.3.1.53.gb58bd.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html