diff options
author | Sverre Rabbelier <srabbelier@gmail.com> | 2010-03-29 11:48:28 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-03-31 21:40:16 -0700 |
commit | 7aeaa2fc0abbf439534769e15b3a59a5814cc3d1 (patch) | |
tree | a3f957d0578ceefba288bbc0ddbec9cdf66f173a /Makefile | |
parent | remote-helpers: add support for an export command (diff) | |
download | tgif-7aeaa2fc0abbf439534769e15b3a59a5814cc3d1.tar.xz |
remote-helpers: add testgit helper
Currently the remote helper infrastructure is only used by the curl
helper, which does not give a good impression of how remote helpers
can be used to interact with foreign repositories. Since implementing
such a helper is non-trivial it would be good to have at least one
easy-to-follow example demonstrating how to implement a helper that
interacts with a foreign vcs using fast-import/fast-export.
The testgit helper can be used to interact with remote git
repositories by prefixing the url with "testgit::".
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -366,6 +366,8 @@ SCRIPT_PERL += git-relink.perl SCRIPT_PERL += git-send-email.perl SCRIPT_PERL += git-svn.perl +SCRIPT_PYTHON += git-remote-testgit.py + SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \ $(patsubst %.perl,%,$(SCRIPT_PERL)) \ $(patsubst %.py,%,$(SCRIPT_PYTHON)) \ |