diff options
author | Jonas Fonseca <fonseca@diku.dk> | 2006-03-02 17:10:49 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-02 23:07:34 -0800 |
commit | c7569b1e0009e0187ce9f87f23699eaa8576b6ee (patch) | |
tree | 7f07d20c4083b889bdfd62995b5ac928d20f8c30 /Documentation | |
parent | 9645da330f10c539a7e8ade6d787c72870812846 (diff) | |
download | git-c7569b1e0009e0187ce9f87f23699eaa8576b6ee.tar.gz git-c7569b1e0009e0187ce9f87f23699eaa8576b6ee.tar.xz |
manpages: insert two missing [verse] markers for multi-line SYNOPSIS
Found with:
for i in *.txt; do
grep -A 2 "SYNOPSIS" "$i" | grep -q "^\[verse\]$" && continue
multiline=$(grep -A 3 "SYNOPSIS" "$i" | tail -n 1)
test -n "$multiline" && echo "$i: $multiline"
done
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-repo-config.txt | 1 | ||||
-rw-r--r-- | Documentation/git-svnimport.txt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/git-repo-config.txt b/Documentation/git-repo-config.txt index 33fcde452..00efde5f0 100644 --- a/Documentation/git-repo-config.txt +++ b/Documentation/git-repo-config.txt @@ -8,6 +8,7 @@ git-repo-config - Get and set options in .git/config. SYNOPSIS -------- +[verse] 'git-repo-config' [type] name [value [value_regex]] 'git-repo-config' [type] --replace-all name [value [value_regex]] 'git-repo-config' [type] --get name [value_regex] diff --git a/Documentation/git-svnimport.txt b/Documentation/git-svnimport.txt index a1588138e..9d3865719 100644 --- a/Documentation/git-svnimport.txt +++ b/Documentation/git-svnimport.txt @@ -9,6 +9,7 @@ git-svnimport - Import a SVN repository into git SYNOPSIS -------- +[verse] 'git-svnimport' [ -o <branch-for-HEAD> ] [ -h ] [ -v ] [ -d | -D ] [ -C <GIT_repository> ] [ -i ] [ -u ] [-l limit_rev] [ -b branch_subdir ] [ -T trunk_subdir ] [ -t tag_subdir ] |