From a3a3ca002d0942696eaa41625da8746f55fc7abe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20=C3=85gren?= Date: Thu, 27 Sep 2018 21:12:19 +0200 Subject: [PATCH] git-commit-graph.txt: fix bullet lists MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We have a couple of bullet items which span multiple lines, and where we have prefixed each line with a `*`. (This might be the result of a text editor trying to help.) This results in each line being typeset as a separate bullet item. Drop the extra `*`. Signed-off-by: Martin Ă…gren Reviewed-by: Derrick Stolee Signed-off-by: Junio C Hamano --- Documentation/git-commit-graph.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/git-commit-graph.txt b/Documentation/git-commit-graph.txt index dececb79d7..f42f2a1481 100644 --- a/Documentation/git-commit-graph.txt +++ b/Documentation/git-commit-graph.txt @@ -73,7 +73,7 @@ $ git commit-graph write ------------------------------------------------ * Write a graph file, extending the current graph file using commits -* in . + in . + ------------------------------------------------ $ echo | git commit-graph write --stdin-packs @@ -86,7 +86,7 @@ $ git show-ref -s | git commit-graph write --stdin-commits ------------------------------------------------ * Write a graph file containing all commits in the current -* commit-graph file along with those reachable from HEAD. + commit-graph file along with those reachable from HEAD. + ------------------------------------------------ $ git rev-parse HEAD | git commit-graph write --stdin-commits --append -- 2.11.4.GIT