@@ -695,7 +695,7 @@ the normal order.
--
+
Patterns have the same syntax and semantics as patterns used for
-fnmatch(3) without the FNM_PATHNAME flag, except a pathname also
+fnmatch(3) without the `FNM_PATHNAME` flag, except a pathname also
matches a pattern if removing any number of the final pathname
components matches the pattern. For example, the pattern "`foo*bar`"
matches "`fooasdfbar`" and "`foo/bar/baz/asdf`" but not "`foobarx`".
@@ -504,12 +504,12 @@ COMMIT INFORMATION
Author and committer information is taken from the following environment
variables, if set:
- GIT_AUTHOR_NAME
- GIT_AUTHOR_EMAIL
- GIT_AUTHOR_DATE
- GIT_COMMITTER_NAME
- GIT_COMMITTER_EMAIL
- GIT_COMMITTER_DATE
+ `GIT_AUTHOR_NAME`
+ `GIT_AUTHOR_EMAIL`
+ `GIT_AUTHOR_DATE`
+ `GIT_COMMITTER_NAME`
+ `GIT_COMMITTER_EMAIL`
+ `GIT_COMMITTER_DATE`
(nb "<", ">" and "\n"s are stripped)
@@ -143,7 +143,7 @@ See also <<FILES>>.
`-f config-file`::
`--file config-file`::
- Use the given config file instead of the one specified by GIT_CONFIG.
+ Use the given config file instead of the one specified by `GIT_CONFIG`.
`--blob blob`::
Similar to `--file` but use the given blob instead of a file. E.g.
@@ -335,25 +335,25 @@ can specify any filename you want.
ENVIRONMENT
-----------
-GIT_CONFIG::
+`GIT_CONFIG`::
Take the configuration from the given file instead of `.git/config`.
Using the `--global` option forces this to `~/.gitconfig`. Using the
`--system` option forces this to `$(prefix)/etc/gitconfig`.
-GIT_CONFIG_NOSYSTEM::
+`GIT_CONFIG_NOSYSTEM`::
Whether to skip reading settings from the system-wide
`$(prefix)/etc/gitconfig` file. See linkgit:git[1] for details.
See also <<FILES>>.
-GIT_CONFIG_COUNT::
-GIT_CONFIG_KEY_<n>::
-GIT_CONFIG_VALUE_<n>::
- If GIT_CONFIG_COUNT is set to a positive number, all environment pairs
- GIT_CONFIG_KEY_<n> and GIT_CONFIG_VALUE_<n> up to that number will be
+`GIT_CONFIG_COUNT`::
+`GIT_CONFIG_KEY_`<n>::
+`GIT_CONFIG_VALUE_`<n>::
+ If `GIT_CONFIG_COUNT` is set to a positive number, all environment pairs
+ `GIT_CONFIG_KEY_`<n> and `GIT_CONFIG_VALUE_`<n> up to that number will be
added to the process's runtime configuration. The config pairs are
zero-indexed. Any missing key or value is treated as an error. An empty
- GIT_CONFIG_COUNT is treated the same as GIT_CONFIG_COUNT=0, namely no
+ `GIT_CONFIG_COUNT` is treated the same as `GIT_CONFIG_COUNT`=0, namely no
pairs are processed. These environment variables will override values
in configuration files, but will be overridden by any explicit options
passed via `git -c`.
@@ -19,7 +19,7 @@ Exports a commit from Git to a CVS checkout, making it easier
to merge patches from a Git repository into a CVS repository.
Specify the name of a CVS checkout using the `-w` switch or execute it
-from the root of the CVS working copy. In the latter case GIT_DIR must
+from the root of the CVS working copy. In the latter case `GIT_DIR` must
be defined. See examples below.
It does its best to do the safe thing, it will check that the files are
@@ -70,7 +70,7 @@ OPTIONS
`-w`::
Specify the location of the CVS checkout to use for the export. This
- option does not require GIT_DIR to be set before execution if the
+ option does not require `GIT_DIR` to be set before execution if the
current directory is within a Git repository. The default is the
value of `cvsexportcommit.cvsdir`.
@@ -153,8 +153,8 @@ This option can be used several times to provide several detection regexes.
---------
+
`git cvsimport` will make it appear as those authors had
-their GIT_AUTHOR_NAME and GIT_AUTHOR_EMAIL set properly
-all along. If a time zone is specified, GIT_AUTHOR_DATE will
+their `GIT_AUTHOR_NAME` and `GIT_AUTHOR_EMAIL` set properly
+all along. If a time zone is specified, `GIT_AUTHOR_DATE` will
have the corresponding offset applied.
+
For convenience, this data is saved to `$GIT_DIR/cvs-authors`
@@ -11,7 +11,7 @@ SYNOPSIS
SSH:
[verse]
-export CVS_SERVER="git cvsserver"
+export `CVS_SERVER`="git cvsserver"
'cvs' -d :ext:user@server/path/repo.git co <HEAD_name>
pserver (/etc/inetd.conf):
@@ -131,11 +131,11 @@ Then provide your password via the pserver method, for example:
cvs -d:pserver:someuser:somepassword <at> server/path/repo.git co <HEAD_name>
------
No special setup is needed for SSH access, other than having Git tools
-in the PATH. If you have clients that do not accept the CVS_SERVER
+in the PATH. If you have clients that do not accept the `CVS_SERVER`
environment variable, you can rename `git-cvsserver` to `cvs`.
Note: Newer CVS versions (>= 1.12.11) also support specifying
-CVS_SERVER directly in CVSROOT like
+`CVS_SERVER` directly in CVSROOT like
------
cvs -d ":ext;CVS_SERVER=git cvsserver:user@server/path/repo.git" co <HEAD_name>
@@ -143,7 +143,7 @@ cvs -d ":ext;CVS_SERVER=git cvsserver:user@server/path/repo.git" co <HEAD_name>
This has the advantage that it will be saved in your 'CVS/Root' files and
you don't need to worry about always setting the correct environment
variable. SSH users restricted to `git-shell` don't need to override the default
-with CVS_SERVER (and shouldn't) as `git-shell` understands `cvs` to mean
+with `CVS_SERVER` (and shouldn't) as `git-shell` understands `cvs` to mean
`git-cvsserver` and pretends that the other end runs the real 'cvs' better.
--
2. For each repo that you want accessible from CVS you need to edit config in
@@ -182,7 +182,7 @@ allowing access over SSH.
automatically saving it in your 'CVS/Root' files, then you need to set them
explicitly in your environment. CVSROOT should be set as per normal, but the
directory should point at the appropriate Git repo. As above, for SSH clients
- _not_ restricted to `git-shell`, CVS_SERVER should be set to `git-cvsserver`.
+ _not_ restricted to `git-shell`, `CVS_SERVER` should be set to `git-cvsserver`.
+
--
------
@@ -192,8 +192,8 @@ allowing access over SSH.
--
4. For SSH clients that will make commits, make sure their server-side
.ssh/environment files (or .bashrc, etc., according to their specific shell)
- export appropriate values for GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL,
- GIT_COMMITTER_NAME, and GIT_COMMITTER_EMAIL. For SSH clients whose login
+ export appropriate values for `GIT_AUTHOR_NAME`, `GIT_AUTHOR_EMAIL`,
+ `GIT_COMMITTER_NAME`, and `GIT_COMMITTER_EMAIL`. For SSH clients whose login
shell is bash, .bashrc may be a reasonable alternative.
5. Clients should now be able to check out the project. Use the CVS 'module'
@@ -312,9 +312,9 @@ ENVIRONMENT
These variables obviate the need for command-line options in some
circumstances, allowing easier restricted usage through `git-shell`.
-GIT_CVSSERVER_BASE_PATH takes the place of the argument to `--base-path`.
+`GIT_CVSSERVER_BASE_PATH` takes the place of the argument to `--base-path`.
-GIT_CVSSERVER_ROOT specifies a single-directory whitelist. The
+`GIT_CVSSERVER_ROOT` specifies a single-directory whitelist. The
repository must still be configured to allow access through
`git-cvsserver`, as described above.
@@ -337,12 +337,12 @@ To get a checkout with the Eclipse CVS client:
Protocol notes: If you are using anonymous access via pserver, just select that.
Those using SSH access should choose the 'ext' protocol, and configure 'ext'
-access on the Preferences->Team->CVS->ExtConnection pane. Set CVS_SERVER to
+access on the Preferences->Team->CVS->ExtConnection pane. Set `CVS_SERVER` to
"`git cvsserver`". Note that password support is not good when using 'ext',
you will definitely want to have SSH keys setup.
Alternatively, you can just use the non-standard extssh protocol that Eclipse
-offer. In that case CVS_SERVER is ignored, and you will have to replace
+offer. In that case `CVS_SERVER` is ignored, and you will have to replace
the cvs utility on the server with `git-cvsserver` or manipulate your `.bashrc`
so that calling 'cvs' effectively calls `git-cvsserver`.
@@ -25,7 +25,7 @@ SYNOPSIS
DESCRIPTION
-----------
-A really simple TCP Git daemon that normally listens on port "DEFAULT_GIT_PORT"
+A really simple TCP Git daemon that normally listens on port `DEFAULT_GIT_PORT`
aka 9418. It waits for a connection asking for a service, and will serve
that service if it is enabled.
@@ -149,7 +149,7 @@ otherwise `stderr`.
Log details about the incoming connections and requested files.
`--reuseaddr`::
- Use SO_REUSEADDR when binding the listening socket.
+ Use `SO_REUSEADDR` when binding the listening socket.
This allows the server to restart without waiting for
old connections to time out.
@@ -330,8 +330,8 @@ selectively enable/disable services per repository::
ENVIRONMENT
-----------
-`git daemon` will set REMOTE_ADDR to the IP address of the client
-that connected to it, if the IP address is available. REMOTE_ADDR will
+`git daemon` will set `REMOTE_ADDR` to the IP address of the client
+that connected to it, if the IP address is available. `REMOTE_ADDR` will
be available in the environment of hooks called when
services are performed.
@@ -75,9 +75,9 @@ The filters are applied in the order as listed below. The <command>
argument is always evaluated in the shell context using the 'eval' command
(with the notable exception of the commit filter, for technical reasons).
Prior to that, the `$GIT_COMMIT` environment variable will be set to contain
-the id of the commit being rewritten. Also, GIT_AUTHOR_NAME,
-GIT_AUTHOR_EMAIL, GIT_AUTHOR_DATE, GIT_COMMITTER_NAME, GIT_COMMITTER_EMAIL,
-and GIT_COMMITTER_DATE are taken from the current commit and exported to
+the id of the commit being rewritten. Also, `GIT_AUTHOR_NAME`,
+`GIT_AUTHOR_EMAIL`, `GIT_AUTHOR_DATE`, `GIT_COMMITTER_NAME`, `GIT_COMMITTER_EMAIL`,
+and `GIT_COMMITTER_DATE` are taken from the current commit and exported to
the environment, in order to affect the author and committer identities of
the replacement commit created by linkgit:git-commit-tree[1] after the
filters have run.
@@ -132,7 +132,7 @@ For all objects, the following names can be used:
The object name (aka SHA-1).
For a non-ambiguous abbreviation of the object name append `:short`.
For an abbreviation of the object name with desired length append
- `:short=<length>`, where the minimum length is MINIMUM_ABBREV. The
+ `:short=<length>`, where the minimum length is `MINIMUM_ABBREV`. The
length may be exceeded to ensure unique object names.
`deltabase`::
This expands to the object name of the delta base for the
@@ -52,9 +52,9 @@ index file, all SHA-1 references in `refs` namespace, and all reflogs
now aren't, but are still in that corresponding reflog.
`--full`::
- Check not just objects in GIT_OBJECT_DIRECTORY
+ Check not just objects in `GIT_OBJECT_DIRECTORY`
(`$GIT_DIR/objects`), but also the ones found in alternate
- object pools listed in GIT_ALTERNATE_OBJECT_DIRECTORIES
+ object pools listed in `GIT_ALTERNATE_OBJECT_DIRECTORIES`
or `$GIT_DIR/objects/info/alternates`,
and in packed Git archives found in `$GIT_DIR/objects/pack`
and corresponding pack subdirectories in alternate
@@ -153,13 +153,13 @@ Extracted Diagnostics
Environment Variables
---------------------
-GIT_OBJECT_DIRECTORY::
+`GIT_OBJECT_DIRECTORY`::
used to specify the object database root (usually `$GIT_DIR/objects`)
-GIT_INDEX_FILE::
+`GIT_INDEX_FILE`::
used to specify the index file of the index
-GIT_ALTERNATE_OBJECT_DIRECTORIES::
+`GIT_ALTERNATE_OBJECT_DIRECTORIES`::
used to specify additional object database roots (usually unset)
GIT
@@ -57,10 +57,10 @@ configuration file:
URL TRANSLATION
---------------
To determine the location of the repository on disk, `git http-backend`
-concatenates the environment variables PATH_INFO, which is set
-automatically by the web server, and GIT_PROJECT_ROOT, which must be set
-manually in the web server configuration. If GIT_PROJECT_ROOT is not
-set, `git http-backend` reads PATH_TRANSLATED, which is also set
+concatenates the environment variables `PATH_INFO`, which is set
+automatically by the web server, and `GIT_PROJECT_ROOT`, which must be set
+manually in the web server configuration. If `GIT_PROJECT_ROOT` is not
+set, `git http-backend` reads `PATH_TRANSLATED`, which is also set
automatically by the web server.
EXAMPLES
@@ -70,7 +70,7 @@ to `/var/www/git/foo/bar.git`.
Apache 2.x::
Ensure mod_cgi, mod_alias, and mod_env are enabled, set
- GIT_PROJECT_ROOT (or DocumentRoot) appropriately, and
+ `GIT_PROJECT_ROOT` (or DocumentRoot) appropriately, and
create a ScriptAlias to the CGI:
+
----------------------------------------------------------------
@@ -244,12 +244,12 @@ ENVIRONMENT
`git http-backend` relies upon the `CGI` environment variables set
by the invoking web server, including:
-* PATH_INFO (if GIT_PROJECT_ROOT is set, otherwise PATH_TRANSLATED)
-* REMOTE_USER
-* REMOTE_ADDR
-* CONTENT_TYPE
-* QUERY_STRING
-* REQUEST_METHOD
+* `PATH_INFO` (if `GIT_PROJECT_ROOT` is set, otherwise `PATH_TRANSLATED`)
+* `REMOTE_USER`
+* `REMOTE_ADDR`
+* `CONTENT_TYPE`
+* `QUERY_STRING`
+* `REQUEST_METHOD`
The `GIT_HTTP_EXPORT_ALL` environmental variable may be passed to
`git-http-backend` to bypass the check for the `git-daemon-export-ok`
@@ -39,12 +39,12 @@ OPTIONS
`--curl`::
Use libcurl to communicate with the IMAP server, unless tunneling
- into it. Ignored if Git was built without the USE_CURL_FOR_IMAP_SEND
+ into it. Ignored if Git was built without the `USE_CURL_FOR_IMAP_SEND`
option set.
`--no-curl`::
Talk to the IMAP server using git's own IMAP routines instead of
- using libcurl. Ignored if Git was built with the NO_OPENSSL option
+ using libcurl. Ignored if Git was built with the `NO_OPENSSL` option
set.
@@ -42,7 +42,7 @@ OPTIONS
`--upload-pack=<exec>`::
Specify the full path of `git-upload-pack` on the remote
host. This allows listing references from repositories accessed via
- SSH and where the SSH daemon does not use the PATH configured by the
+ SSH and where the SSH daemon does not use the `PATH` configured by the
user.
`--exit-code`::
@@ -58,17 +58,17 @@ some tunnel.
ENVIRONMENT VARIABLES
---------------------
-GIT_TRANSLOOP_DEBUG::
+`GIT_TRANSLOOP_DEBUG`::
If set, prints debugging information about various reads/writes.
ENVIRONMENT VARIABLES PASSED TO COMMAND
---------------------------------------
-GIT_EXT_SERVICE::
+`GIT_EXT_SERVICE`::
Set to long name (`git-upload-pack`, etc...) of service helper needs
to invoke.
-GIT_EXT_SERVICE_NOPREFIX::
+`GIT_EXT_SERVICE_NOPREFIX`::
Set to long name (upload-pack, etc...) of service helper needs
to invoke.
@@ -30,7 +30,7 @@ context.
ENVIRONMENT VARIABLES
---------------------
-GIT_TRANSLOOP_DEBUG::
+`GIT_TRANSLOOP_DEBUG`::
If set, prints debugging information about various reads/writes.
EXAMPLES
@@ -208,7 +208,7 @@ Options for Files
`--local-env-vars`::
List the GIT_* environment variables that are local to the
- repository (e.g. GIT_DIR or GIT_WORK_TREE, but not GIT_EDITOR).
+ repository (e.g. `GIT_DIR` or `GIT_WORK_TREE`, but not `GIT_EDITOR`).
Only the names of the variables are listed, not their value,
even if they are set.
@@ -385,7 +385,7 @@ Example
~~~~~~~
------------
-OPTS_SPEC="\
+`OPTS_SPEC`="\
some-command [<options>] <args>...
some-command does foo and bar!
@@ -63,7 +63,7 @@ This option may be specified multiple times.
This option may be specified multiple times.
`--compose`::
- Invoke a text editor (see GIT_EDITOR in linkgit:git-var[1])
+ Invoke a text editor (see `GIT_EDITOR` in linkgit:git-var[1])
to edit an introductory message for the patch series.
+
When `--compose` is used, `git send-email` will use the From, Subject, and
@@ -81,7 +81,7 @@ See the CONFIGURATION section for `sendemail.multiEdit`.
the value of the `sendemail.from` configuration option is used. If
neither the command-line option nor `sendemail.from` are set, then the
user will be prompted for the value. The default for the prompt will be
- the value of GIT_AUTHOR_IDENT, or GIT_COMMITTER_IDENT if that is not
+ the value of `GIT_AUTHOR_IDENT`, or `GIT_COMMITTER_IDENT` if that is not
set, as returned by `git var -l`.
`--reply-to=<address>`::
@@ -81,8 +81,8 @@ require_clean_work_tree rebase "Please commit or stash them."
----------------
get_author_ident_from_commit::
- outputs code for use with eval to set the GIT_AUTHOR_NAME,
- GIT_AUTHOR_EMAIL and GIT_AUTHOR_DATE variables for a given commit.
+ outputs code for use with eval to set the `GIT_AUTHOR_NAME`,
+ `GIT_AUTHOR_EMAIL` and `GIT_AUTHOR_DATE` variables for a given commit.
create_virtual_base::
modifies the first file so only lines in common with the
@@ -722,7 +722,7 @@ ADVANCED OPTIONS
-i<GIT_SVN_ID>::
--id <GIT_SVN_ID>::
- This sets GIT_SVN_ID (instead of using the environment). This
+ This sets `GIT_SVN_ID` (instead of using the environment). This
allows the user to override the default refname to fetch from
when tracking a single URL. The `log` and `dcommit` commands
no longer require this switch as an argument.
@@ -366,7 +366,7 @@ the tag object affects, for example, the ordering of tags in the
`gitweb` interface.
To set the date used in future tag objects, set the environment
-variable GIT_COMMITTER_DATE (see the later discussion of possible
+variable `GIT_COMMITTER_DATE` (see the later discussion of possible
values; the most common form is "YYYY-MM-DD HH:MM").
For example:
@@ -31,13 +31,13 @@ EXAMPLES
VARIABLES
---------
-GIT_AUTHOR_IDENT::
+`GIT_AUTHOR_IDENT`::
The author of a piece of code.
-GIT_COMMITTER_IDENT::
+`GIT_COMMITTER_IDENT`::
The person who put a piece of code into Git.
-GIT_EDITOR::
+`GIT_EDITOR`::
Text editor for use by Git commands. The value is meant to be
interpreted by the shell when it is used. Examples: `~/bin/vi`,
`$SOME_ENVIRONMENT_VARIABLE`, `"C:\Program Files\Vim\gvim.exe"
@@ -49,7 +49,7 @@ ifdef::git-default-editor[]
The build you are using chose '{git-default-editor}' as the default.
endif::git-default-editor[]
-GIT_PAGER::
+`GIT_PAGER`::
Text viewer for use by Git commands (e.g., 'less'). The value
is meant to be interpreted by the shell. The order of preference
is the `$GIT_PAGER` environment variable, then `core.pager`
@@ -104,7 +104,7 @@ sensitive information can be part of the key.
`--exec-path[=<path>]`::
Path to wherever your core Git programs are installed.
- This can also be controlled by setting the GIT_EXEC_PATH
+ This can also be controlled by setting the `GIT_EXEC_PATH`
environment variable. If no path is given, `git` will print
the current setting and then exit.
@@ -153,7 +153,7 @@ If you just want to run `git` as if it was started in `<path>` then use
`--work-tree=<path>`::
Set the path to the working tree. It can be an absolute path
or a path relative to the current working directory.
- This can also be controlled by setting the GIT_WORK_TREE
+ This can also be controlled by setting the `GIT_WORK_TREE`
environment variable and the `core.worktree` configuration
variable (see `core.worktree` in linkgit:git-config[1] for a
more detailed discussion).
@@ -169,7 +169,7 @@ If you just want to run `git` as if it was started in `<path>` then use
context about the superproject that invoked it.
`--bare`::
- Treat the repository as a bare repository. If GIT_DIR
+ Treat the repository as a bare repository. If `GIT_DIR`
environment is not set, it is set to the current working
directory.
@@ -493,7 +493,7 @@ double-quotes and respecting backslash escapes. E.g., the value
set, it is a list of directories that Git should not chdir up
into while looking for a repository directory (useful for
excluding slow-loading network directories). It will not
- exclude the current working directory or a GIT_DIR set on the
+ exclude the current working directory or a `GIT_DIR` set on the
command line or in the environment. Normally, Git has to read
the entries in this list and resolve any symlink that
might be present in order to compare them with the current
@@ -520,7 +520,7 @@ double-quotes and respecting backslash escapes. E.g., the value
taken from `$GIT_DIR`. See linkgit:gitrepository-layout[5] and
linkgit:git-worktree[1] for
details. This variable has lower precedence than other path
- variables such as GIT_INDEX_FILE, GIT_OBJECT_DIRECTORY...
+ variables such as `GIT_INDEX_FILE`, `GIT_OBJECT_DIRECTORY`...
`GIT_DEFAULT_HASH`::
If this variable is set, the default hash algorithm for new
@@ -582,7 +582,7 @@ Git Diffs
+
where:
- <old|new>-file:: are files GIT_EXTERNAL_DIFF can use to read the
+ <old|new>-file:: are files `GIT_EXTERNAL_DIFF` can use to read the
contents of <old|new>,
<old|new>-hex:: are the 40-hexdigit SHA-1 hashes,
<old|new>-mode:: are the octal representation of the file modes.
@@ -110,7 +110,7 @@ PATTERN FORMAT
The character "`?`" matches any one character except "`/`".
The range notation, e.g. `[a-zA-Z]`, can be used to match
one of the characters in a range. See fnmatch(3) and the
- FNM_PATHNAME flag for a more detailed description.
+ `FNM_PATHNAME` flag for a more detailed description.
Two consecutive asterisks ("`**`") in patterns matched against
full pathname may have special meaning:
@@ -8,8 +8,8 @@ gitnamespaces - Git namespaces
SYNOPSIS
--------
[verse]
-GIT_NAMESPACE=<namespace> `git upload-pack`
-GIT_NAMESPACE=<namespace> `git receive-pack`
+`GIT_NAMESPACE`=<namespace> `git upload-pack`
+`GIT_NAMESPACE`=<namespace> `git receive-pack`
DESCRIPTION
@@ -51,7 +51,7 @@ names of refs as specified by `GIT_NAMESPACE`. `git-upload-pack` and
namespace.
The smart HTTP server, linkgit:git-http-backend[1], will pass
-GIT_NAMESPACE through to the backend programs; see
+`GIT_NAMESPACE` through to the backend programs; see
linkgit:git-http-backend[1] for sample configuration to expose
repository namespaces as repositories.
@@ -591,7 +591,7 @@ header.
Base URL for relative URLs in pages generated by `gitweb`,
(e.g. `$logo`, `$favicon`, `@stylesheets` if they are relative URLs),
needed and used '<base href="$base_url">' only for URLs with nonempty
- PATH_INFO. Usually `gitweb` sets its value correctly,
+ `PATH_INFO`. Usually `gitweb` sets its value correctly,
and there is no need to set this variable, e.g. to `$my_uri` or "/".
See `$per_request_config` if you need to override it anyway.
@@ -902,7 +902,7 @@ EXAMPLES
To enable blame, pickaxe search, and snapshot support (allowing "tar.gz" and
"zip" snapshots), while allowing individual projects to turn them off, put
-the following in your GITWEB_CONFIG file:
+the following in your `GITWEB_CONFIG` file:
--------------------------------------------------------------------------------
$feature{'blame'}{'default'} = [1];
@@ -936,12 +936,12 @@ ENVIRONMENT
The location of per-instance and system-wide configuration files can be
overridden using the following environment variables:
-GITWEB_CONFIG::
+`GITWEB_CONFIG`::
Sets location of per-instance configuration file.
-GITWEB_CONFIG_SYSTEM::
+`GITWEB_CONFIG_SYSTEM`::
Sets location of fallback system-wide configuration file.
This file is read only if per-instance one does not exist.
-GITWEB_CONFIG_COMMON::
+`GITWEB_CONFIG_COMMON`::
Sets location of common system-wide configuration file.
@@ -93,7 +93,7 @@ TAB and LF, (used to separate fields in a record).
* Currently recognized fields are:
`<repository path>`::
- path to repository GIT_DIR, relative to `$projectroot`
+ path to repository `GIT_DIR`, relative to `$projectroot`
`<repository owner>`::
displayed as repository owner, preferably full name, or email,
or both
@@ -122,7 +122,7 @@ listed in projects list file will be accessible).
Generating projects list using `gitweb`
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-We assume that GITWEB_CONFIG has its default Makefile value, namely
+We assume that `GITWEB_CONFIG` has its default Makefile value, namely
'gitweb_config.perl'. Put the following in 'gitweb_make_index.perl' file:
----------------------------------------------------------------------------
read_config_file("gitweb_config.perl");
@@ -130,7 +130,7 @@ $projects_list = $projectroot;
----------------------------------------------------------------------------
Then create the following script to get list of project in the format
-suitable for GITWEB_LIST build configuration variable (or
+suitable for `GITWEB_LIST` build configuration variable (or
`$projects_list` variable in `gitweb` config):
----------------------------------------------------------------------------
@@ -603,7 +603,7 @@ the third and the fourth.
PATH_INFO usage
~~~~~~~~~~~~~~~
-If you enable PATH_INFO usage in `gitweb` by putting
+If you enable `PATH_INFO` usage in `gitweb` by putting
----------------------------------------------------------------------------
$feature{'pathinfo'}{'default'} = [1];
----------------------------------------------------------------------------
@@ -637,7 +637,7 @@ complementary static files (stylesheet, favicon, JavaScript):
</VirtualHost>
----------------------------------------------------------------------------
The rewrite rule guarantees that existing static files will be properly
-served, whereas any other URL will be passed to `gitweb` as PATH_INFO
+served, whereas any other URL will be passed to `gitweb` as `PATH_INFO`
parameter.
*Notice* that in this case you don't need special settings for
@@ -366,7 +366,7 @@ should not be combined with other pathspec.
`glob`;;
Git treats the pattern as a shell glob suitable for
- consumption by fnmatch(3) with the FNM_PATHNAME flag:
+ consumption by fnmatch(3) with the `FNM_PATHNAME` flag:
wildcards in the pattern will not match a / in the pathname.
For example, "Documentation/{asterisk}.html" matches
"Documentation/git.html" but not "Documentation/ppc/ppc.html"
Wrap environment variables without $ with backticks as indicated in the CodingGuidelines. The following command and regex assisted the substitution with manual intervention to exclude false positives. REGEX="(^|[[:space:]]+)['\"]?([A-Z]+)(_[A-Z0-9]+)+['\"]?([[:punct:]]|[[:space:]]+|$)" && for f in $(grep -Pl "$REGEX" *.txt --exclude-dir=RelNotes); do emacsclient $f; done Signed-off-by: Firmin Martin <firminmartin24@gmail.com> --- Documentation/diff-options.txt | 2 +- Documentation/git-commit.txt | 12 ++++++------ Documentation/git-config.txt | 18 +++++++++--------- Documentation/git-cvsexportcommit.txt | 4 ++-- Documentation/git-cvsimport.txt | 4 ++-- Documentation/git-cvsserver.txt | 22 +++++++++++----------- Documentation/git-daemon.txt | 8 ++++---- Documentation/git-filter-branch.txt | 6 +++--- Documentation/git-for-each-ref.txt | 2 +- Documentation/git-fsck.txt | 10 +++++----- Documentation/git-http-backend.txt | 22 +++++++++++----------- Documentation/git-imap-send.txt | 4 ++-- Documentation/git-ls-remote.txt | 2 +- Documentation/git-remote-ext.txt | 6 +++--- Documentation/git-remote-fd.txt | 2 +- Documentation/git-rev-parse.txt | 4 ++-- Documentation/git-send-email.txt | 4 ++-- Documentation/git-sh-setup.txt | 4 ++-- Documentation/git-svn.txt | 2 +- Documentation/git-tag.txt | 2 +- Documentation/git-var.txt | 8 ++++---- Documentation/git.txt | 12 ++++++------ Documentation/gitignore.txt | 2 +- Documentation/gitnamespaces.txt | 6 +++--- Documentation/gitweb.conf.txt | 10 +++++----- Documentation/gitweb.txt | 10 +++++----- Documentation/glossary-content.txt | 2 +- 27 files changed, 95 insertions(+), 95 deletions(-)