* [PATCH] Documentation: add a new man page for "git-help" and -i|--info option.
@ 2007-12-04 5:44 Christian Couder
2007-12-04 8:43 ` Junio C Hamano
2007-12-05 8:19 ` Väinö Järvelä
0 siblings, 2 replies; 7+ messages in thread
From: Christian Couder @ 2007-12-04 5:44 UTC (permalink / raw)
To: Junio Hamano; +Cc: git
Option -i|--info for "git-help" is documented only in the new
"git-help.txt" man page, but this new man page is referenced
from the "--help" option documentation in the "git.txt" man page.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
---
Documentation/git-help.txt | 53 ++++++++++++++++++++++++++++++++++++++++++++
Documentation/git.txt | 11 ++++++--
2 files changed, 61 insertions(+), 3 deletions(-)
create mode 100644 Documentation/git-help.txt
This is a first documentation patch in my git-help
improvement series.
diff --git a/Documentation/git-help.txt b/Documentation/git-help.txt
new file mode 100644
index 0000000..232daae
--- /dev/null
+++ b/Documentation/git-help.txt
@@ -0,0 +1,53 @@
+git-help(1)
+======
+
+NAME
+----
+git-help - display help information about git
+
+SYNOPSIS
+--------
+'git help' [-a|--all|-i|--info] [COMMAND]
+
+DESCRIPTION
+-----------
+
+With no options and no COMMAND given, the synopsis of the 'git'
+command and a list of the most commonly used git commands are printed
+on the standard output.
+
+If the option '--all' or '-a' is given, then all available commands are
+printed on the standard output.
+
+If a git command is named, a manual page for that command is brought
+up. The 'man' program is used by default for this purpose, but this
+can be overriden by other options.
+
+Note that 'git --help ...' is identical as 'git help ...' because the
+former is internally converted into the latter.
+
+OPTIONS
+-------
+-a|--all::
+
+ Prints all the available commands on the standard output. This
+ option superseeds any other option.
+
+-i|--info::
+ Use the 'info' program to display the manual page, instead of
+ the 'man' program that is used by default.
+
+Author
+------
+Written by Junio C Hamano <gitster@pobox.com> and the git-list
+<git@vger.kernel.org>.
+
+Documentation
+-------------
+Initial documentation was part of the gitlink:git[7] man page.
+Christian Couder <chriscool@tuxfamily.org> extracted and rewrote it a
+little. Maintenance is done by the git-list <git@vger.kernel.org>.
+
+GIT
+---
+Part of the gitlink:git[7] suite
diff --git a/Documentation/git.txt b/Documentation/git.txt
index 5460201..f8d1eef 100644
--- a/Documentation/git.txt
+++ b/Documentation/git.txt
@@ -100,9 +100,14 @@ OPTIONS
--help::
Prints the synopsis and a list of the most commonly used
- commands. If a git command is named this option will bring up
- the man-page for that command. If the option '--all' or '-a' is
- given then all available commands are printed.
+ commands. If the option '--all' or '-a' is given then all
+ available commands are printed. If a git command is named this
+ option will bring up the manual page for that command.
+
+ Other options are available to control how the manual page is
+ displayed. See gitlink:git-help[1] for more information,
+ because 'git --help ...' is converted internally into 'git
+ help ...'.
--exec-path::
Path to wherever your core git programs are installed.
--
1.5.3.6.1993.g154f-dirty
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] Documentation: add a new man page for "git-help" and -i|--info option.
2007-12-04 5:44 [PATCH] Documentation: add a new man page for "git-help" and -i|--info option Christian Couder
@ 2007-12-04 8:43 ` Junio C Hamano
2007-12-05 8:19 ` Väinö Järvelä
1 sibling, 0 replies; 7+ messages in thread
From: Junio C Hamano @ 2007-12-04 8:43 UTC (permalink / raw)
To: Christian Couder; +Cc: git
Christian Couder <chriscool@tuxfamily.org> writes:
> Option -i|--info for "git-help" is documented only in the new
> "git-help.txt" man page, but this new man page is referenced
> from the "--help" option documentation in the "git.txt" man page.
>
> Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
I like the addition of git-help manpage, but this ties the new manual
page to inclusion of your "git help -i" series.
For now, I'd strip the description of -i and apply the remainder. Let's
cook -i / -w / -x enhancement idea a bit more on the list before going
ahead with it.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Documentation: add a new man page for "git-help" and -i|--info option.
2007-12-04 5:44 [PATCH] Documentation: add a new man page for "git-help" and -i|--info option Christian Couder
2007-12-04 8:43 ` Junio C Hamano
@ 2007-12-05 8:19 ` Väinö Järvelä
2007-12-05 8:27 ` Wincent Colaiuta
2007-12-05 8:58 ` Junio C Hamano
1 sibling, 2 replies; 7+ messages in thread
From: Väinö Järvelä @ 2007-12-05 8:19 UTC (permalink / raw)
To: Christian Couder; +Cc: Junio Hamano, git
[-- Attachment #1: Type: text/plain, Size: 3690 bytes --]
Patch attached to fix header error in this patch.
(Attached because Mail.app mangles inline patches)
--
Väinö
On Dec 4, 2007, at 07:44, Christian Couder wrote:
> Option -i|--info for "git-help" is documented only in the new
> "git-help.txt" man page, but this new man page is referenced
> from the "--help" option documentation in the "git.txt" man page.
>
> Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
> ---
> Documentation/git-help.txt | 53 +++++++++++++++++++++++++++++++++++
> +++++++++
> Documentation/git.txt | 11 ++++++--
> 2 files changed, 61 insertions(+), 3 deletions(-)
> create mode 100644 Documentation/git-help.txt
>
> This is a first documentation patch in my git-help
> improvement series.
>
> diff --git a/Documentation/git-help.txt b/Documentation/git-help.txt
> new file mode 100644
> index 0000000..232daae
> --- /dev/null
> +++ b/Documentation/git-help.txt
> @@ -0,0 +1,53 @@
> +git-help(1)
> +======
> +
> +NAME
> +----
> +git-help - display help information about git
> +
> +SYNOPSIS
> +--------
> +'git help' [-a|--all|-i|--info] [COMMAND]
> +
> +DESCRIPTION
> +-----------
> +
> +With no options and no COMMAND given, the synopsis of the 'git'
> +command and a list of the most commonly used git commands are printed
> +on the standard output.
> +
> +If the option '--all' or '-a' is given, then all available commands
> are
> +printed on the standard output.
> +
> +If a git command is named, a manual page for that command is brought
> +up. The 'man' program is used by default for this purpose, but this
> +can be overriden by other options.
> +
> +Note that 'git --help ...' is identical as 'git help ...' because the
> +former is internally converted into the latter.
> +
> +OPTIONS
> +-------
> +-a|--all::
> +
> + Prints all the available commands on the standard output. This
> + option superseeds any other option.
> +
> +-i|--info::
> + Use the 'info' program to display the manual page, instead of
> + the 'man' program that is used by default.
> +
> +Author
> +------
> +Written by Junio C Hamano <gitster@pobox.com> and the git-list
> +<git@vger.kernel.org>.
> +
> +Documentation
> +-------------
> +Initial documentation was part of the gitlink:git[7] man page.
> +Christian Couder <chriscool@tuxfamily.org> extracted and rewrote it a
> +little. Maintenance is done by the git-list <git@vger.kernel.org>.
> +
> +GIT
> +---
> +Part of the gitlink:git[7] suite
> diff --git a/Documentation/git.txt b/Documentation/git.txt
> index 5460201..f8d1eef 100644
> --- a/Documentation/git.txt
> +++ b/Documentation/git.txt
> @@ -100,9 +100,14 @@ OPTIONS
>
> --help::
> Prints the synopsis and a list of the most commonly used
> - commands. If a git command is named this option will bring up
> - the man-page for that command. If the option '--all' or '-a' is
> - given then all available commands are printed.
> + commands. If the option '--all' or '-a' is given then all
> + available commands are printed. If a git command is named this
> + option will bring up the manual page for that command.
> +
> + Other options are available to control how the manual page is
> + displayed. See gitlink:git-help[1] for more information,
> + because 'git --help ...' is converted internally into 'git
> + help ...'.
>
> --exec-path::
> Path to wherever your core git programs are installed.
> --
> 1.5.3.6.1993.g154f-dirty
>
> -
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
[-- Attachment #2: 0001-Fixed-git-help.txt-header-error.patch --]
[-- Type: application/octet-stream, Size: 738 bytes --]
From 6d9fa82be1074a9fe6bf3fad36a838c1142966ca Mon Sep 17 00:00:00 2001
From: =?utf-8?q?V=C3=A4in=C3=B6=20J=C3=A4rvel=C3=A4?= <v@pp.inet.fi>
Date: Wed, 5 Dec 2007 10:05:48 +0200
Subject: [PATCH] Fixed git-help.txt header error
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Väinö Järvelä <v@pp.inet.fi>
---
Documentation/git-help.txt | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Documentation/git-help.txt b/Documentation/git-help.txt
index 232daae..c94e27b 100644
--- a/Documentation/git-help.txt
+++ b/Documentation/git-help.txt
@@ -1,5 +1,5 @@
git-help(1)
-======
+===========
NAME
----
--
1.5.3.7.2115.geb80
[-- Attachment #3: Type: text/plain, Size: 1 bytes --]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] Documentation: add a new man page for "git-help" and -i|--info option.
2007-12-05 8:19 ` Väinö Järvelä
@ 2007-12-05 8:27 ` Wincent Colaiuta
2007-12-05 8:33 ` Väinö Järvelä
2007-12-05 8:58 ` Junio C Hamano
1 sibling, 1 reply; 7+ messages in thread
From: Wincent Colaiuta @ 2007-12-05 8:27 UTC (permalink / raw)
To: Väinö Järvelä; +Cc: Christian Couder, Junio Hamano, git
El 5/12/2007, a las 9:19, Väinö Järvelä escribió:
> Patch attached to fix header error in this patch.
>
> (Attached because Mail.app mangles inline patches)
I'm a Mail.app user as well. Any reason why you can't use "git send-
email"? It's very useful.
Cheers,
Wincent
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Documentation: add a new man page for "git-help" and -i|--info option.
2007-12-05 8:27 ` Wincent Colaiuta
@ 2007-12-05 8:33 ` Väinö Järvelä
0 siblings, 0 replies; 7+ messages in thread
From: Väinö Järvelä @ 2007-12-05 8:33 UTC (permalink / raw)
To: Wincent Colaiuta; +Cc: Christian Couder, Junio Hamano, git
On Dec 5, 2007, at 10:27, Wincent Colaiuta wrote:
> El 5/12/2007, a las 9:19, Väinö Järvelä escribió:
>
>> Patch attached to fix header error in this patch.
>>
>> (Attached because Mail.app mangles inline patches)
>
> I'm a Mail.app user as well. Any reason why you can't use "git send-
> email"? It's very useful.
I didn't remember that send-email had "--in-reply-to" parameter, and I
thought it would be cleaner to send as a reply. Thus I used Mail.app.
--
Väinö
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Documentation: add a new man page for "git-help" and -i|--info option.
2007-12-05 8:19 ` Väinö Järvelä
2007-12-05 8:27 ` Wincent Colaiuta
@ 2007-12-05 8:58 ` Junio C Hamano
2007-12-05 11:50 ` Väinö Järvelä
1 sibling, 1 reply; 7+ messages in thread
From: Junio C Hamano @ 2007-12-05 8:58 UTC (permalink / raw)
To: Väinö Järvelä; +Cc: Christian Couder, git
Perhaps your mail and my push crossed. The same fix is there at the tip
of 'master' branch since last night.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Documentation: add a new man page for "git-help" and -i|--info option.
2007-12-05 8:58 ` Junio C Hamano
@ 2007-12-05 11:50 ` Väinö Järvelä
0 siblings, 0 replies; 7+ messages in thread
From: Väinö Järvelä @ 2007-12-05 11:50 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Christian Couder, git
On Dec 5, 2007, at 10:58, Junio C Hamano wrote:
> Perhaps your mail and my push crossed. The same fix is there at the
> tip
> of 'master' branch since last night.
Ah, sorry, I didn't check the master, and didn't mention that the fix
was for next.
--
Väinö
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2007-12-05 11:52 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-04 5:44 [PATCH] Documentation: add a new man page for "git-help" and -i|--info option Christian Couder
2007-12-04 8:43 ` Junio C Hamano
2007-12-05 8:19 ` Väinö Järvelä
2007-12-05 8:27 ` Wincent Colaiuta
2007-12-05 8:33 ` Väinö Järvelä
2007-12-05 8:58 ` Junio C Hamano
2007-12-05 11:50 ` Väinö Järvelä
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).