diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-26 18:20:32 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-26 18:20:32 -0400 |
commit | 629a103affcf2703098e0af77c69e19f03df4f06 (patch) | |
tree | 1d6266f27f3d2cf911f589b5ce0de476c0c985a8 /doc/special_remotes | |
parent | de37fe1a227a593c3e5884f0cd4aab39065c0704 (diff) |
update
Diffstat (limited to 'doc/special_remotes')
-rw-r--r-- | doc/special_remotes/external.mdwn | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/special_remotes/external.mdwn b/doc/special_remotes/external.mdwn index 5d150e583..1a62bba64 100644 --- a/doc/special_remotes/external.mdwn +++ b/doc/special_remotes/external.mdwn @@ -7,12 +7,15 @@ There are three ways to implement a new special remote: 3. Writing a program in any language you like that speaks the [[external_special_remote_protocol]]. -This page is all about writing new external special remotes. It's not hard! +The rest of this page concentrates on writing new external special remotes. +It's not hard! * All you need is to make a program with a name like `git-annex-remote-$bar`. * Install it in PATH. * When the user runs `git annex initremote foo type=external externaltype=$bar`, it will use your program. +* If you build a new special remote, please add it to the list + of [[special_remotes]]. Here's a simple shell script example, which can easily be adapted to run whatever commands you need. ([[download|example.sh]]) |