From 3f971fc425bca3d9e97b04e9db39e4d5e43921bc Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sun, 14 Aug 2005 17:24:36 -0700 Subject: [PATCH] Documentation updates. Linus brought up that documentation for many commands have incorrect attribution. I started counting lines again, but ended up adding a handful of missing manual pages. Signed-off-by: Junio C Hamano --- Documentation/Makefile | 1 + Documentation/git-apply-patch-script.txt | 4 +- Documentation/git-commit-script.txt | 17 +++++- Documentation/git-fetch-script.txt | 5 +- Documentation/git-log-script.txt | 45 +++++++++++++++ Documentation/git-merge-one-file-script.txt | 5 +- Documentation/git-pull-script.txt | 5 +- Documentation/git-resolve-script.txt | 5 +- Documentation/git-shortlog.txt | 31 +++++++++++ Documentation/git-status-script.txt | 46 ++++++++++++++++ Documentation/git-tag-script.txt | 5 +- Documentation/git-whatchanged.txt | 61 +++++++++++++++++++++ Documentation/git.txt | 18 +++++- 13 files changed, 231 insertions(+), 17 deletions(-) create mode 100644 Documentation/git-log-script.txt create mode 100644 Documentation/git-shortlog.txt create mode 100644 Documentation/git-status-script.txt create mode 100644 Documentation/git-whatchanged.txt diff --git a/Documentation/Makefile b/Documentation/Makefile index c887ded6af..336578497d 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -53,3 +53,4 @@ clean: %.xml : %.txt asciidoc -b docbook -d manpage $< + diff --git a/Documentation/git-apply-patch-script.txt b/Documentation/git-apply-patch-script.txt index a6f860d424..808d3cdc1b 100644 --- a/Documentation/git-apply-patch-script.txt +++ b/Documentation/git-apply-patch-script.txt @@ -1,6 +1,6 @@ git-apply-patch-script(1) ========================= -v0.1, May 2005 +v0.99.4, May 2005 NAME ---- @@ -20,7 +20,7 @@ family of commands report to the current work tree. Author ------ -Written by Linus Torvalds +Written by Junio C Hamano Documentation -------------- diff --git a/Documentation/git-commit-script.txt b/Documentation/git-commit-script.txt index bb559d70a5..cf6b5c3da2 100644 --- a/Documentation/git-commit-script.txt +++ b/Documentation/git-commit-script.txt @@ -8,7 +8,7 @@ git-commit-script - Record your changes SYNOPSIS -------- -'git commit' [-a] [(-c | -C) | -F | -m ] ... +'git commit' [-a] [-s] [-v] [(-c | -C) | -F | -m ] ... DESCRIPTION ----------- @@ -36,13 +36,26 @@ OPTIONS -m :: Use the given as the commit message. +-s:: + Add Signed-off-by line at the end of the commit message. + +-v:: + Look for suspicious lines the commit introduces, and + abort committing if there is one. The definition of + 'suspicious lines' is currently the lines that has + trailing whitespaces, and the lines whose indentation + has a SP character immediately followed by a TAB + character. + ...:: Update specified paths in the index file. Author ------ -Written by Linus Torvalds +Written by Linus Torvalds and +Junio C Hamano + GIT --- diff --git a/Documentation/git-fetch-script.txt b/Documentation/git-fetch-script.txt index 937df05dbc..db3086c732 100644 --- a/Documentation/git-fetch-script.txt +++ b/Documentation/git-fetch-script.txt @@ -1,6 +1,6 @@ git-fetch-script(1) =================== -v0.1, July 2005 +v0.99.4, Aug 2005 NAME ---- @@ -36,7 +36,8 @@ include::pull-fetch-param.txt[] Author ------ -Written by Linus Torvalds and Junio C Hamano +Written by Linus Torvalds and +Junio C Hamano Documentation -------------- diff --git a/Documentation/git-log-script.txt b/Documentation/git-log-script.txt new file mode 100644 index 0000000000..ed359bec86 --- /dev/null +++ b/Documentation/git-log-script.txt @@ -0,0 +1,45 @@ +git-log-script(1) +================= +v0.99.4, Aug 2005 + +NAME +---- +git-log-script - Show commit logs + + +SYNOPSIS +-------- +'git log'