Skip to content

Commit 3b0d240

Browse files
Michael J Grubergitster
authored andcommitted
Make <identifier> lowercase in Documentation
Leaving uppercase abbreviations (e.g. URL) and an identifier named after an upercase env variable (CVSROOT) in place, this adjusts the few remaining cases and fixes an unidentified identifier along the way. Signed-off-by: Michael J Gruber <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 41dbcd4 commit 3b0d240

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

Documentation/git-remote-ext.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ git-remote-ext - Bridge smart transport to external command.
77

88
SYNOPSIS
99
--------
10-
git remote add nick "ext::<command>[ <arguments>...]"
10+
git remote add <nick> "ext::<command>[ <arguments>...]"
1111

1212
DESCRIPTION
1313
-----------
14-
This remote helper uses the specified 'program' to connect
14+
This remote helper uses the specified '<command>' to connect
1515
to a remote git server.
1616

17-
Data written to stdin of this specified 'program' is assumed
17+
Data written to stdin of the specified '<command>' is assumed
1818
to be sent to a git:// server, git-upload-pack, git-receive-pack
1919
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
2121
the same service.
2222

2323
Command and arguments are separated by an unescaped space.
@@ -40,7 +40,7 @@ The following sequences have a special meaning:
4040
git wants to invoke.
4141

4242
'%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
4444
will cause the helper to start by sending git:// service requests to
4545
the remote side with the service field set to an appropriate value and
4646
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
5050
some tunnel.
5151

5252
'%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
5454
the vhost field in the git:// service request (to rest of the argument).
5555
Default is not to send vhost in such request (if sent).
5656

@@ -76,7 +76,7 @@ EXAMPLES:
7676
---------
7777
This remote helper is transparently used by git when
7878
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>
8080
begins with `ext::`. Examples:
8181

8282
"ext::ssh -i /home/foo/.ssh/somekey user&#64;host.example %S 'foo/repo'"::

Documentation/git-remote-helpers.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,12 +201,12 @@ REF LIST ATTRIBUTES
201201

202202
OPTIONS
203203
-------
204-
'option verbosity' <N>::
204+
'option verbosity' <n>::
205205
Changes the verbosity of messages displayed by the helper.
206-
A value of 0 for N means that processes operate
206+
A value of 0 for <n> means that processes operate
207207
quietly, and the helper produces only error output.
208208
1 is the default level of verbosity, and higher values
209-
of N correspond to the number of -v flags passed on the
209+
of <n> correspond to the number of -v flags passed on the
210210
command line.
211211

212212
'option progress' \{'true'|'false'\}::

Documentation/git-svn.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ COMMANDS
6666
Set the 'rewriteRoot' option in the [svn-remote] config.
6767
--rewrite-uuid=<UUID>;;
6868
Set the 'rewriteUUID' option in the [svn-remote] config.
69-
--username=<USER>;;
69+
--username=<user>;;
7070
For transports that SVN handles authentication for (http,
7171
https, and plain svn), specify the username. For other
7272
transports (eg svn+ssh://), you must include the username in
@@ -443,8 +443,8 @@ OPTIONS
443443
Only used with the 'init' command.
444444
These are passed directly to 'git init'.
445445

446-
-r <ARG>::
447-
--revision <ARG>::
446+
-r <arg>::
447+
--revision <arg>::
448448
Used with the 'fetch' command.
449449
+
450450
This allows revision ranges for partial/cauterized history

0 commit comments

Comments
 (0)