mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
bd4a3d6168
When looking up a topic via "git help <topic>", git-help prepends "git-" to topics that are the names of commands (either builtin or found on the path) and "git" (no hyphen) to any other topic name. "git-remote-helpers" is not the name of a command, so "git help remote-helpers" looks for "gitremote-helpers" and does not find it. Fix this by renaming "git-remote-helpers.txt" to "gitremote-helpers.txt". Signed-off-by: John Keeping <john@keeping.me.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
30 lines
573 B
Text
30 lines
573 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.py'.
|
|
|
|
SEE ALSO
|
|
--------
|
|
linkgit:gitremote-helpers[1]
|
|
|
|
GIT
|
|
---
|
|
Part of the linkgit:git[1] suite
|