mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
fc407f9821
Exercising the python remote helper framework is for another tool and another test. This is about testing the remote-helper interface. It's way simpler, it exercises the same features of remote helpers, it's easy to read and understand, and it doesn't depend on python. For now let's just copy the old remote-helpers test script, although some of those tests don't make sense. In addition, this script would be able to test other features not currently being tested. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
30 lines
571 B
Text
30 lines
571 B
Text
git-remote-testgit(1)
|
|
=====================
|
|
|
|
NAME
|
|
----
|
|
git-remote-testgit - Example remote-helper
|
|
|
|
|
|
SYNOPSIS
|
|
--------
|
|
[verse]
|
|
git clone testgit::<source-repo> [<destination>]
|
|
|
|
DESCRIPTION
|
|
-----------
|
|
|
|
This command is a simple remote-helper, that is used both as a
|
|
testcase for the remote-helper functionality, and as an example to
|
|
show remote-helper authors one possible implementation.
|
|
|
|
The best way to learn more is to read the comments and source code in
|
|
'git-remote-testgit'.
|
|
|
|
SEE ALSO
|
|
--------
|
|
linkgit:git-remote-helpers[1]
|
|
|
|
GIT
|
|
---
|
|
Part of the linkgit:git[1] suite
|