@@ -7,17 +7,17 @@ git-remote-ext - Bridge smart transport to external command.
7
7
8
8
SYNOPSIS
9
9
--------
10
- git remote add nick "ext::<command>[ <arguments>...]"
10
+ git remote add < nick> "ext::<command>[ <arguments>...]"
11
11
12
12
DESCRIPTION
13
13
-----------
14
- This remote helper uses the specified 'program ' to connect
14
+ This remote helper uses the specified '<command> ' to connect
15
15
to a remote git server.
16
16
17
- Data written to stdin of this specified 'program ' is assumed
17
+ Data written to stdin of the specified '<command> ' is assumed
18
18
to be sent to a git:// server, git-upload-pack, git-receive-pack
19
19
or git-upload-archive (depending on situation), and data read
20
- from stdout of this program is assumed to be received from
20
+ from stdout of <command> is assumed to be received from
21
21
the same service.
22
22
23
23
Command and arguments are separated by an unescaped space.
@@ -40,7 +40,7 @@ The following sequences have a special meaning:
40
40
git wants to invoke.
41
41
42
42
'%G' (must be the first characters in an argument)::
43
- This argument will not be passed to 'program '. Instead, it
43
+ This argument will not be passed to '<command> '. Instead, it
44
44
will cause the helper to start by sending git:// service requests to
45
45
the remote side with the service field set to an appropriate value and
46
46
the repository field set to rest of the argument. Default is not to send
@@ -50,7 +50,7 @@ This is useful if remote side is git:// server accessed over
50
50
some tunnel.
51
51
52
52
'%V' (must be first characters in argument)::
53
- This argument will not be passed to 'program '. Instead it sets
53
+ This argument will not be passed to '<command> '. Instead it sets
54
54
the vhost field in the git:// service request (to rest of the argument).
55
55
Default is not to send vhost in such request (if sent).
56
56
@@ -76,7 +76,7 @@ EXAMPLES:
76
76
---------
77
77
This remote helper is transparently used by git when
78
78
you use commands such as "git fetch <URL>", "git clone <URL>",
79
- , "git push <URL>" or "git remote add nick <URL>", where <URL>
79
+ , "git push <URL>" or "git remote add < nick> <URL>", where <URL>
80
80
begins with `ext::`. Examples:
81
81
82
82
"ext::ssh -i /home/foo/.ssh/somekey user@host.example %S 'foo/repo'"::
0 commit comments