<h2>SYNOPSIS</h2>\r
<div class="sectionbody">\r
<div class="verseblock">\r
-<div class="content"><em>git-config</em> [--system | --global] [type] name [value [value_regex]]\r
-<em>git-config</em> [--system | --global] [type] --add name value\r
-<em>git-config</em> [--system | --global] [type] --replace-all name [value [value_regex]]\r
+<div class="content"><em>git-config</em> [--system | --global] name [value [value_regex]]\r
+<em>git-config</em> [--system | --global] --add name value\r
+<em>git-config</em> [--system | --global] --replace-all name [value [value_regex]]\r
<em>git-config</em> [--system | --global] [type] --get name [value_regex]\r
<em>git-config</em> [--system | --global] [type] --get-all name [value_regex]\r
-<em>git-config</em> [--system | --global] [type] --unset name [value_regex]\r
-<em>git-config</em> [--system | --global] [type] --unset-all name [value_regex]\r
-<em>git-config</em> [--system | --global] [type] --rename-section old_name new_name\r
-<em>git-config</em> [--system | --global] [type] --remove-section name\r
+<em>git-config</em> [--system | --global] --unset name [value_regex]\r
+<em>git-config</em> [--system | --global] --unset-all name [value_regex]\r
+<em>git-config</em> [--system | --global] --rename-section old_name new_name\r
+<em>git-config</em> [--system | --global] --remove-section name\r
<em>git-config</em> [--system | --global] -l | --list</div></div>\r
</div>\r
<h2>DESCRIPTION</h2>\r
<p>The type specifier can be either <em>--int</em> or <em>--bool</em>, which will make\r
<em>git-config</em> ensure that the variable(s) are of the given type and\r
convert the value to the canonical form (simple decimal number for int,\r
-a "true" or "false" string for bool). If no type specifier is passed,\r
+a "true" or "false" string for bool). Type specifiers currently only\r
+take effect for reading operations. If no type specifier is passed,\r
no checks or transformations are performed on the value.</p>\r
<p>This command will fail if:</p>\r
<ol>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 20-May-2007 19:11:25 UTC\r
+Last updated 21-May-2007 06:13:41 UTC\r
</div>\r
</div>\r
</body>\r
SYNOPSIS
--------
[verse]
-'git-config' [--system | --global] [type] name [value [value_regex]]
-'git-config' [--system | --global] [type] --add name value
-'git-config' [--system | --global] [type] --replace-all name [value [value_regex]]
+'git-config' [--system | --global] name [value [value_regex]]
+'git-config' [--system | --global] --add name value
+'git-config' [--system | --global] --replace-all name [value [value_regex]]
'git-config' [--system | --global] [type] --get name [value_regex]
'git-config' [--system | --global] [type] --get-all name [value_regex]
-'git-config' [--system | --global] [type] --unset name [value_regex]
-'git-config' [--system | --global] [type] --unset-all name [value_regex]
-'git-config' [--system | --global] [type] --rename-section old_name new_name
-'git-config' [--system | --global] [type] --remove-section name
+'git-config' [--system | --global] --unset name [value_regex]
+'git-config' [--system | --global] --unset-all name [value_regex]
+'git-config' [--system | --global] --rename-section old_name new_name
+'git-config' [--system | --global] --remove-section name
'git-config' [--system | --global] -l | --list
DESCRIPTION
The type specifier can be either '--int' or '--bool', which will make
'git-config' ensure that the variable(s) are of the given type and
convert the value to the canonical form (simple decimal number for int,
-a "true" or "false" string for bool). If no type specifier is passed,
+a "true" or "false" string for bool). Type specifiers currently only
+take effect for reading operations. If no type specifier is passed,
no checks or transformations are performed on the value.
This command will fail if:
[ --cherry-pick ]\r
[ --encoding[=<encoding>] ]\r
[ --(author|committer|grep)=<pattern> ]\r
+ [ --regexp-ignore-case ] [ --extended-regexp ]\r
[ --date={local|relative|default} ]\r
[ [--objects | --objects-edge] [ --unpacked ] ]\r
[ --pretty | --header ]\r
</p>\r
</dd>\r
<dt>\r
+--regexp-ignore-case\r
+</dt>\r
+<dd>\r
+<p>\r
+ Match the regexp limiting patterns without regard to letters case.\r
+</p>\r
+</dd>\r
+<dt>\r
+--extended-regexp\r
+</dt>\r
+<dd>\r
+<p>\r
+ Consider the limiting patterns to be extended regular expressions\r
+ instead of the default basic regular expressions.\r
+</p>\r
+</dd>\r
+<dt>\r
--remove-empty\r
</dt>\r
<dd>\r
</div>\r
<div id="footer">\r
<div id="footer-text">\r
-Last updated 19-May-2007 04:19:45 UTC\r
+Last updated 21-May-2007 06:13:41 UTC\r
</div>\r
</div>\r
</body>\r
[ \--cherry-pick ]
[ \--encoding[=<encoding>] ]
[ \--(author|committer|grep)=<pattern> ]
+ [ \--regexp-ignore-case ] [ \--extended-regexp ]
[ \--date={local|relative|default} ]
[ [\--objects | \--objects-edge] [ \--unpacked ] ]
[ \--pretty | \--header ]
Limit the commits output to ones with log message that
matches the specified pattern (regular expression).
+--regexp-ignore-case::
+
+ Match the regexp limiting patterns without regard to letters case.
+
+--extended-regexp::
+
+ Consider the limiting patterns to be extended regular expressions
+ instead of the default basic regular expressions.
+
--remove-empty::
Stop when a given path disappears from the tree.