git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/3] git-remote-fd & git-remote-ext
@ 2010-10-04 11:04 Ilari Liusvaara
  2010-10-04 11:04 ` [PATCH v4 1/3] Add bidirectional_transfer_loop() Ilari Liusvaara
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Ilari Liusvaara @ 2010-10-04 11:04 UTC (permalink / raw)
  To: git

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:
* Refactor the transfer loop quite a bit.
* Change the "format character" in remote-ext from '\' to '%'.
* Some code changes in remote-fd.
* Documentation changes for remote-fd.

Ilari Liusvaara (3):
  Add bidirectional_transfer_loop()
  git-remote-fd
  git-remote-ext

 .gitignore                       |    2 +
 Documentation/git-remote-ext.txt |  119 ++++++++++++++
 Documentation/git-remote-fd.txt  |   59 +++++++
 Makefile                         |    2 +
 builtin.h                        |    2 +
 builtin/remote-ext.c             |  243 ++++++++++++++++++++++++++++
 builtin/remote-fd.c              |   80 ++++++++++
 compat/mingw.h                   |    5 +
 git.c                            |    2 +
 transport-helper.c               |  324 ++++++++++++++++++++++++++++++++++++++
 transport.h                      |    1 +
 11 files changed, 839 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.48.g63ac7.dirty

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2010-10-07  5:55 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-04 11:04 [PATCH v4 0/3] git-remote-fd & git-remote-ext Ilari Liusvaara
2010-10-04 11:04 ` [PATCH v4 1/3] Add bidirectional_transfer_loop() Ilari Liusvaara
2010-10-04 11:19   ` Jonathan Nieder
2010-10-04 11:04 ` [PATCH v4 2/3] git-remote-fd Ilari Liusvaara
2010-10-04 11:25   ` Jonathan Nieder
2010-10-07  5:55     ` Junio C Hamano
2010-10-04 11:04 ` [PATCH v4 3/3] git-remote-ext Ilari Liusvaara
2010-10-04 16:56   ` Sverre Rabbelier
2010-10-04 18:11     ` Ilari Liusvaara
2010-10-04 18:09       ` Sverre Rabbelier
2010-10-04 11:30 ` [PATCH v4 0/3] git-remote-fd & git-remote-ext Jonathan Nieder
2010-10-04 12:06   ` Ilari Liusvaara
2010-10-04 12:28 ` yj2133011

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).