From 22817b400cefe320b89065ee4c7a6864957e1f00 Mon Sep 17 00:00:00 2001 From: Alexei Sholik Date: Tue, 8 Mar 2011 15:16:09 +0200 Subject: [PATCH 1/4] Documentation: remove redundant colons in git-for-each-ref.txt Signed-off-by: Alexei Sholik Signed-off-by: Junio C Hamano --- Documentation/git-for-each-ref.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/git-for-each-ref.txt b/Documentation/git-for-each-ref.txt index fac1cf55e5..bffb5d24f8 100644 --- a/Documentation/git-for-each-ref.txt +++ b/Documentation/git-for-each-ref.txt @@ -123,7 +123,7 @@ EXAMPLES -------- An example directly producing formatted text. Show the most recent -3 tagged commits:: +3 tagged commits: ------------ #!/bin/sh @@ -140,7 +140,7 @@ Ref: %(*refname) A simple example showing the use of shell eval on the output, -demonstrating the use of --shell. List the prefixes of all heads:: +demonstrating the use of --shell. List the prefixes of all heads: ------------ #!/bin/sh @@ -154,7 +154,7 @@ done A bit more elaborate report on tags, demonstrating that the format -may be an entire script:: +may be an entire script: ------------ #!/bin/sh From 621c39de223f80d7014c39c5791db8b2b066fa18 Mon Sep 17 00:00:00 2001 From: Alexei Sholik Date: Tue, 8 Mar 2011 15:16:10 +0200 Subject: [PATCH 2/4] Add Author and Documentation sections to git-for-each-ref.txt Signed-off-by: Alexei Sholik Signed-off-by: Junio C Hamano --- Documentation/git-for-each-ref.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Documentation/git-for-each-ref.txt b/Documentation/git-for-each-ref.txt index bffb5d24f8..152e695c81 100644 --- a/Documentation/git-for-each-ref.txt +++ b/Documentation/git-for-each-ref.txt @@ -204,3 +204,15 @@ eval=`git for-each-ref --shell --format="$fmt" \ refs/tags` eval "$eval" ------------ + +Author +------ +Written by Junio C Hamano . + +Documentation +------------- +Documentation by Junio C Hamano and the git-list . + +GIT +--- +Part of the linkgit:git[1] suite From 494489a5bd241337fa94331c038976f2a042265e Mon Sep 17 00:00:00 2001 From: Piotr Krukowiecki Date: Wed, 9 Mar 2011 21:03:48 +0100 Subject: [PATCH 3/4] ls-remote documentation: argument is optional Correct SYNOPSIS section. Signed-off-by: Piotr Krukowiecki Signed-off-by: Junio C Hamano --- Documentation/git-ls-remote.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/git-ls-remote.txt b/Documentation/git-ls-remote.txt index abe7bf9ff9..3422765827 100644 --- a/Documentation/git-ls-remote.txt +++ b/Documentation/git-ls-remote.txt @@ -10,7 +10,7 @@ SYNOPSIS -------- [verse] 'git ls-remote' [--heads] [--tags] [-u | --upload-pack ] - ... + [...] DESCRIPTION ----------- From 681186ae3ab340dd684b1d9e09b457baeb2331f9 Mon Sep 17 00:00:00 2001 From: Mathias Lafeldt Date: Wed, 9 Mar 2011 21:25:09 +0100 Subject: [PATCH 4/4] Fix typo in t/README Signed-off-by: Mathias Lafeldt Signed-off-by: Junio C Hamano --- t/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/README b/t/README index 25f7d2d2e3..78c9e6575c 100644 --- a/t/README +++ b/t/README @@ -328,7 +328,7 @@ Keep in mind: Skipping tests -------------- -If you need to skip tests you should do so be using the three-arg form +If you need to skip tests you should do so by using the three-arg form of the test_* functions (see the "Test harness library" section below), e.g.: