diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-09-12 10:38:11 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-09-12 10:38:11 -0700 |
commit | e49450327e452798439d93e58236282897796b55 (patch) | |
tree | 34ff085d2958b86b3a7cc9f9d4c2c88a759f15c1 /Documentation/git-remote-testgit.txt | |
parent | 2f9e2e75874e0f0722382106e2e189cc3f95cc7d (diff) | |
parent | 9609dc9ddcb1a79112eb45c88244cdbb622bd5bc (diff) | |
download | git-e49450327e452798439d93e58236282897796b55.tar.gz git-e49450327e452798439d93e58236282897796b55.tar.xz |
Merge branch 'jn/remote-helpers-doc'
* jn/remote-helpers-doc:
(short) documentation for the testgit remote helper
Documentation/git-remote-helpers: explain how import works with multiple refs
Documentation/remote-helpers: explain capabilities first
Diffstat (limited to 'Documentation/git-remote-testgit.txt')
-rw-r--r-- | Documentation/git-remote-testgit.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Documentation/git-remote-testgit.txt b/Documentation/git-remote-testgit.txt new file mode 100644 index 000000000..2a67d456a --- /dev/null +++ b/Documentation/git-remote-testgit.txt @@ -0,0 +1,30 @@ +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:git-remote-helpers[1] + +GIT +--- +Part of the linkgit:git[1] suite |