From: Junio C Hamano Date: Mon, 21 May 2007 06:14:27 +0000 (+0000) Subject: Autogenerated HTML docs for v1.5.2-24-g93d4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a5c02c50ab1f04e70fb2b0fcfc021e94291f58e8;p=git.git Autogenerated HTML docs for v1.5.2-24-g93d4 --- diff --git a/git-config.html b/git-config.html index 58f0ed34f..879001206 100644 --- a/git-config.html +++ b/git-config.html @@ -273,15 +273,15 @@ git-config(1) Manual Page

SYNOPSIS

-
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

@@ -298,7 +298,8 @@ prepend a single exclamation mark in front (see EXAMPLES).

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:

    @@ -1679,7 +1680,7 @@ transfer.unpackLimit
diff --git a/git-config.txt b/git-config.txt index 280ef2058..827a49970 100644 --- a/git-config.txt +++ b/git-config.txt @@ -9,15 +9,15 @@ git-config - Get and set repository or global options 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 @@ -36,7 +36,8 @@ prepend a single exclamation mark in front (see EXAMPLES). 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: diff --git a/git-rev-list.html b/git-rev-list.html index 1d691795b..7292dc3f0 100644 --- a/git-rev-list.html +++ b/git-rev-list.html @@ -289,6 +289,7 @@ git-rev-list(1) Manual Page [ --cherry-pick ] [ --encoding[=<encoding>] ] [ --(author|committer|grep)=<pattern> ] + [ --regexp-ignore-case ] [ --extended-regexp ] [ --date={local|relative|default} ] [ [--objects | --objects-edge] [ --unpacked ] ] [ --pretty | --header ] @@ -546,6 +547,23 @@ limiting may be applied.

+--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
@@ -1056,7 +1074,7 @@ and the git-list <git@vger.kernel.org>.

diff --git a/git-rev-list.txt b/git-rev-list.txt index c3c2043d1..0dba73f27 100644 --- a/git-rev-list.txt +++ b/git-rev-list.txt @@ -25,6 +25,7 @@ SYNOPSIS [ \--cherry-pick ] [ \--encoding[=] ] [ \--(author|committer|grep)= ] + [ \--regexp-ignore-case ] [ \--extended-regexp ] [ \--date={local|relative|default} ] [ [\--objects | \--objects-edge] [ \--unpacked ] ] [ \--pretty | \--header ] @@ -214,6 +215,15 @@ limiting may be applied. 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.