From: Junio C Hamano Date: Wed, 6 Jun 2007 10:48:25 +0000 (+0000) Subject: Autogenerated HTML docs for v1.5.2.1-126-g6abd0 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=94cad1a32556bed051e92e86aca50d02da810ad8;p=git.git Autogenerated HTML docs for v1.5.2.1-126-g6abd0 --- diff --git a/git-format-patch.html b/git-format-patch.html index 82587c903..5538b204a 100644 --- a/git-format-patch.html +++ b/git-format-patch.html @@ -275,7 +275,8 @@ git-format-patch(1) Manual Page
git-format-patch [-n | -k] [-o <dir> | --stdout] [--thread] [--attach[=<boundary>] | --inline[=<boundary>]] - [-s | --signoff] [<common diff options>] [--start-number <n>] + [-s | --signoff] [<common diff options>] + [--start-number <n>] [--numbered-files] [--in-reply-to=Message-Id] [--suffix=.<sfx>] [--ignore-if-in-upstream] [--subject-prefix=Subject-Prefix] @@ -291,9 +292,11 @@ tree is implied. For a more complete list of ways to spell git-rev-parse(1).

The output of this command is convenient for e-mail submission or for use with git-am(1).

-

Each output file is numbered sequentially from 1, and uses the +

By default, each output file is numbered sequentially from 1, and uses the first line of the commit message (massaged for pathname safety) as -the filename. The names of the output files are printed to standard +the filename. With the --numbered-files option, the output file names +will only be numbers, without the first line of the commit appended. +The names of the output files are printed to standard output, unless the --stdout option is specified.

If -o is specified, output files are created in <dir>. Otherwise they are created in the current working directory.

@@ -706,6 +709,16 @@ reference.

+--numbered-files +
+
+

+ Output file names will be a simple number sequence + without the default first line of the commit appended. + Mutually exclusive with the --stdout option. +

+
+
-k|--keep-subject
@@ -889,7 +902,7 @@ git-format-patch -3
diff --git a/git-format-patch.txt b/git-format-patch.txt index a33d157b9..363edb0fc 100644 --- a/git-format-patch.txt +++ b/git-format-patch.txt @@ -11,7 +11,8 @@ SYNOPSIS [verse] 'git-format-patch' [-n | -k] [-o | --stdout] [--thread] [--attach[=] | --inline[=]] - [-s | --signoff] [] [--start-number ] + [-s | --signoff] [] + [--start-number ] [--numbered-files] [--in-reply-to=Message-Id] [--suffix=.] [--ignore-if-in-upstream] [--subject-prefix=Subject-Prefix] @@ -30,9 +31,11 @@ gitlink:git-rev-parse[1]. The output of this command is convenient for e-mail submission or for use with gitlink:git-am[1]. -Each output file is numbered sequentially from 1, and uses the +By default, each output file is numbered sequentially from 1, and uses the first line of the commit message (massaged for pathname safety) as -the filename. The names of the output files are printed to standard +the filename. With the --numbered-files option, the output file names +will only be numbers, without the first line of the commit appended. +The names of the output files are printed to standard output, unless the --stdout option is specified. If -o is specified, output files are created in . Otherwise @@ -60,6 +63,11 @@ include::diff-options.txt[] --start-number :: Start numbering the patches at instead of 1. +--numbered-files:: + Output file names will be a simple number sequence + without the default first line of the commit appended. + Mutually exclusive with the --stdout option. + -k|--keep-subject:: Do not strip/add '[PATCH]' from the first line of the commit log message. diff --git a/git-tag.html b/git-tag.html index 1298a31c0..956023e6a 100644 --- a/git-tag.html +++ b/git-tag.html @@ -275,7 +275,7 @@ git-tag(1) Manual Page
git-tag [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>] <name> [<head>] git-tag -d <name>… -git-tag -l [<pattern>] +git-tag [-n [<num>]] -l [<pattern>] git-tag -v <name>

DESCRIPTION

@@ -295,8 +295,8 @@ committer identity for the current user is used to find the GnuPG key for signing.

-d <tag> deletes the tag.

-v <tag> verifies the gpg signature of the tag.

-

-l <pattern> lists tags that match the given pattern (or all -if no pattern is given).

+

-l <pattern> lists tags with names that match the given pattern +(or all if no pattern is given).

OPTIONS

@@ -350,11 +350,21 @@ if no pattern is given).

+-n <num> +
+
+

+ <num> specifies how many lines from the annotation, if any, + are printed when using -l. + The default is not to print any annotation lines. +

+
+
-l <pattern>

- List tags that match the given pattern (or all if no pattern is given). + List tags with names that match the given pattern (or all if no pattern is given).

@@ -521,7 +531,7 @@ Junio C Hamano <junkio@cox.net> and Chris Wright <chrisw@osdl.org>.<
diff --git a/git-tag.txt b/git-tag.txt index 4e3e02756..aee2c1bdc 100644 --- a/git-tag.txt +++ b/git-tag.txt @@ -11,7 +11,7 @@ SYNOPSIS [verse] 'git-tag' [-a | -s | -u ] [-f] [-m | -F ] [] 'git-tag' -d ... -'git-tag' -l [] +'git-tag' [-n []] -l [] 'git-tag' -v DESCRIPTION @@ -38,8 +38,8 @@ GnuPG key for signing. `-v ` verifies the gpg signature of the tag. -`-l ` lists tags that match the given pattern (or all -if no pattern is given). +`-l ` lists tags with names that match the given pattern +(or all if no pattern is given). OPTIONS ------- @@ -61,8 +61,13 @@ OPTIONS -v:: Verify the gpg signature of given the tag +-n :: + specifies how many lines from the annotation, if any, + are printed when using -l. + The default is not to print any annotation lines. + -l :: - List tags that match the given pattern (or all if no pattern is given). + List tags with names that match the given pattern (or all if no pattern is given). -m :: Use the given tag message (instead of prompting)