mirror of
https://github.com/git/git.git
synced 2024-11-24 18:33:43 +08:00
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 <git@drmicha.warpmail.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
41dbcd4540
commit
3b0d24053b
@ -7,17 +7,17 @@ git-remote-ext - Bridge smart transport to external command.
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
git remote add nick "ext::<command>[ <arguments>...]"
|
git remote add <nick> "ext::<command>[ <arguments>...]"
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
-----------
|
-----------
|
||||||
This remote helper uses the specified 'program' to connect
|
This remote helper uses the specified '<command>' to connect
|
||||||
to a remote git server.
|
to a remote git server.
|
||||||
|
|
||||||
Data written to stdin of this specified 'program' is assumed
|
Data written to stdin of the specified '<command>' is assumed
|
||||||
to be sent to a git:// server, git-upload-pack, git-receive-pack
|
to be sent to a git:// server, git-upload-pack, git-receive-pack
|
||||||
or git-upload-archive (depending on situation), and data read
|
or git-upload-archive (depending on situation), and data read
|
||||||
from stdout of this program is assumed to be received from
|
from stdout of <command> is assumed to be received from
|
||||||
the same service.
|
the same service.
|
||||||
|
|
||||||
Command and arguments are separated by an unescaped space.
|
Command and arguments are separated by an unescaped space.
|
||||||
@ -40,7 +40,7 @@ The following sequences have a special meaning:
|
|||||||
git wants to invoke.
|
git wants to invoke.
|
||||||
|
|
||||||
'%G' (must be the first characters in an argument)::
|
'%G' (must be the first characters in an argument)::
|
||||||
This argument will not be passed to 'program'. Instead, it
|
This argument will not be passed to '<command>'. Instead, it
|
||||||
will cause the helper to start by sending git:// service requests to
|
will cause the helper to start by sending git:// service requests to
|
||||||
the remote side with the service field set to an appropriate value and
|
the remote side with the service field set to an appropriate value and
|
||||||
the repository field set to rest of the argument. Default is not to send
|
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
|
|||||||
some tunnel.
|
some tunnel.
|
||||||
|
|
||||||
'%V' (must be first characters in argument)::
|
'%V' (must be first characters in argument)::
|
||||||
This argument will not be passed to 'program'. Instead it sets
|
This argument will not be passed to '<command>'. Instead it sets
|
||||||
the vhost field in the git:// service request (to rest of the argument).
|
the vhost field in the git:// service request (to rest of the argument).
|
||||||
Default is not to send vhost in such request (if sent).
|
Default is not to send vhost in such request (if sent).
|
||||||
|
|
||||||
@ -76,7 +76,7 @@ EXAMPLES:
|
|||||||
---------
|
---------
|
||||||
This remote helper is transparently used by git when
|
This remote helper is transparently used by git when
|
||||||
you use commands such as "git fetch <URL>", "git clone <URL>",
|
you use commands such as "git fetch <URL>", "git clone <URL>",
|
||||||
, "git push <URL>" or "git remote add nick <URL>", where <URL>
|
, "git push <URL>" or "git remote add <nick> <URL>", where <URL>
|
||||||
begins with `ext::`. Examples:
|
begins with `ext::`. Examples:
|
||||||
|
|
||||||
"ext::ssh -i /home/foo/.ssh/somekey user@host.example %S 'foo/repo'"::
|
"ext::ssh -i /home/foo/.ssh/somekey user@host.example %S 'foo/repo'"::
|
||||||
|
@ -201,12 +201,12 @@ REF LIST ATTRIBUTES
|
|||||||
|
|
||||||
OPTIONS
|
OPTIONS
|
||||||
-------
|
-------
|
||||||
'option verbosity' <N>::
|
'option verbosity' <n>::
|
||||||
Changes the verbosity of messages displayed by the helper.
|
Changes the verbosity of messages displayed by the helper.
|
||||||
A value of 0 for N means that processes operate
|
A value of 0 for <n> means that processes operate
|
||||||
quietly, and the helper produces only error output.
|
quietly, and the helper produces only error output.
|
||||||
1 is the default level of verbosity, and higher values
|
1 is the default level of verbosity, and higher values
|
||||||
of N correspond to the number of -v flags passed on the
|
of <n> correspond to the number of -v flags passed on the
|
||||||
command line.
|
command line.
|
||||||
|
|
||||||
'option progress' \{'true'|'false'\}::
|
'option progress' \{'true'|'false'\}::
|
||||||
|
@ -66,7 +66,7 @@ COMMANDS
|
|||||||
Set the 'rewriteRoot' option in the [svn-remote] config.
|
Set the 'rewriteRoot' option in the [svn-remote] config.
|
||||||
--rewrite-uuid=<UUID>;;
|
--rewrite-uuid=<UUID>;;
|
||||||
Set the 'rewriteUUID' option in the [svn-remote] config.
|
Set the 'rewriteUUID' option in the [svn-remote] config.
|
||||||
--username=<USER>;;
|
--username=<user>;;
|
||||||
For transports that SVN handles authentication for (http,
|
For transports that SVN handles authentication for (http,
|
||||||
https, and plain svn), specify the username. For other
|
https, and plain svn), specify the username. For other
|
||||||
transports (eg svn+ssh://), you must include the username in
|
transports (eg svn+ssh://), you must include the username in
|
||||||
@ -443,8 +443,8 @@ OPTIONS
|
|||||||
Only used with the 'init' command.
|
Only used with the 'init' command.
|
||||||
These are passed directly to 'git init'.
|
These are passed directly to 'git init'.
|
||||||
|
|
||||||
-r <ARG>::
|
-r <arg>::
|
||||||
--revision <ARG>::
|
--revision <arg>::
|
||||||
Used with the 'fetch' command.
|
Used with the 'fetch' command.
|
||||||
+
|
+
|
||||||
This allows revision ranges for partial/cauterized history
|
This allows revision ranges for partial/cauterized history
|
||||||
|
Loading…
Reference in New Issue
Block a user