remote-helpers: add testgit helper
commit7aeaa2fc0abbf439534769e15b3a59a5814cc3d1
authorSverre Rabbelier <srabbelier@gmail.com>
Mon, 29 Mar 2010 16:48:28 +0000 (29 11:48 -0500)
committerJunio C Hamano <gitster@pobox.com>
Thu, 1 Apr 2010 04:40:16 +0000 (31 21:40 -0700)
treea3f957d0578ceefba288bbc0ddbec9cdf66f173a
parent73b49a759216bf33cc366eeac113ce00d8c49cc6
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>
.gitignore
Makefile
git-remote-testgit.py [new file with mode: 0644]
git_remote_helpers/git/exporter.py [new file with mode: 0644]
git_remote_helpers/git/importer.py [new file with mode: 0644]
git_remote_helpers/git/non_local.py [new file with mode: 0644]
git_remote_helpers/git/repo.py [new file with mode: 0644]