Browse Source

Documentation: use [verse] for SYNOPSIS sections

The SYNOPSIS sections of most commands that span several lines already
use [verse] to retain line breaks. Most commands that don't span
several lines seem not to use [verse]. In the HTML output, [verse]
does not only preserve line breaks, but also makes the section
indented, which causes a slight inconsistency between commands that
use [verse] and those that don't. Use [verse] in all SYNOPSIS sections
for consistency.

Also remove the blank lines from git-fetch.txt and git-rebase.txt to
align with the other man pages. In the case of git-rebase.txt, which
already uses [verse], the blank line makes the [verse] not apply to
the last line, so removing the blank line also makes the formatting
within the document more consistent.

While at it, add single quotes to 'git cvsimport' for consistency with
other commands.

Signed-off-by: Martin von Zweigbergk <martin.von.zweigbergk@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Martin von Zweigbergk 14 years ago committed by Junio C Hamano
parent
commit
7791a1d9b9
  1. 1
      Documentation/git-annotate.txt
  2. 1
      Documentation/git-bisect.txt
  3. 1
      Documentation/git-cherry-pick.txt
  4. 1
      Documentation/git-cherry.txt
  5. 1
      Documentation/git-citool.txt
  6. 1
      Documentation/git-commit-tree.txt
  7. 1
      Documentation/git-count-objects.txt
  8. 1
      Documentation/git-cvsexportcommit.txt
  9. 1
      Documentation/git-diff-files.txt
  10. 1
      Documentation/git-diff-index.txt
  11. 1
      Documentation/git-difftool.txt
  12. 1
      Documentation/git-fast-export.txt
  13. 1
      Documentation/git-fast-import.txt
  14. 1
      Documentation/git-fetch-pack.txt
  15. 4
      Documentation/git-fetch.txt
  16. 1
      Documentation/git-fsck-objects.txt
  17. 1
      Documentation/git-gc.txt
  18. 1
      Documentation/git-get-tar-commit-id.txt
  19. 1
      Documentation/git-gui.txt
  20. 1
      Documentation/git-help.txt
  21. 1
      Documentation/git-http-fetch.txt
  22. 1
      Documentation/git-http-push.txt
  23. 1
      Documentation/git-imap-send.txt
  24. 1
      Documentation/git-init-db.txt
  25. 1
      Documentation/git-init.txt
  26. 1
      Documentation/git-log.txt
  27. 1
      Documentation/git-lost-found.txt
  28. 1
      Documentation/git-mailinfo.txt
  29. 1
      Documentation/git-mailsplit.txt
  30. 1
      Documentation/git-merge-index.txt
  31. 1
      Documentation/git-merge-one-file.txt
  32. 1
      Documentation/git-merge-tree.txt
  33. 1
      Documentation/git-mergetool--lib.txt
  34. 1
      Documentation/git-mergetool.txt
  35. 1
      Documentation/git-mktag.txt
  36. 1
      Documentation/git-mktree.txt
  37. 1
      Documentation/git-mv.txt
  38. 1
      Documentation/git-pack-redundant.txt
  39. 1
      Documentation/git-pack-refs.txt
  40. 1
      Documentation/git-parse-remote.txt
  41. 1
      Documentation/git-patch-id.txt
  42. 1
      Documentation/git-peek-remote.txt
  43. 1
      Documentation/git-prune-packed.txt
  44. 1
      Documentation/git-prune.txt
  45. 1
      Documentation/git-pull.txt
  46. 1
      Documentation/git-read-tree.txt
  47. 1
      Documentation/git-rebase.txt
  48. 1
      Documentation/git-receive-pack.txt
  49. 1
      Documentation/git-reflog.txt
  50. 1
      Documentation/git-relink.txt
  51. 1
      Documentation/git-remote-ext.txt
  52. 1
      Documentation/git-remote-helpers.txt
  53. 1
      Documentation/git-repack.txt
  54. 1
      Documentation/git-repo-config.txt
  55. 1
      Documentation/git-request-pull.txt
  56. 1
      Documentation/git-rerere.txt
  57. 1
      Documentation/git-rev-parse.txt
  58. 1
      Documentation/git-revert.txt
  59. 1
      Documentation/git-rm.txt
  60. 1
      Documentation/git-send-email.txt
  61. 1
      Documentation/git-send-pack.txt
  62. 1
      Documentation/git-sh-i18n.txt
  63. 1
      Documentation/git-sh-setup.txt
  64. 1
      Documentation/git-shell.txt
  65. 1
      Documentation/git-show-branch.txt
  66. 1
      Documentation/git-show-index.txt
  67. 1
      Documentation/git-show.txt
  68. 1
      Documentation/git-status.txt
  69. 1
      Documentation/git-stripspace.txt
  70. 1
      Documentation/git-svn.txt
  71. 1
      Documentation/git-symbolic-ref.txt
  72. 1
      Documentation/git-tar-tree.txt
  73. 1
      Documentation/git-unpack-file.txt
  74. 1
      Documentation/git-unpack-objects.txt
  75. 1
      Documentation/git-update-ref.txt
  76. 1
      Documentation/git-update-server-info.txt
  77. 1
      Documentation/git-upload-archive.txt
  78. 1
      Documentation/git-upload-pack.txt
  79. 1
      Documentation/git-var.txt
  80. 1
      Documentation/git-verify-pack.txt
  81. 1
      Documentation/git-verify-tag.txt
  82. 1
      Documentation/git-web--browse.txt
  83. 1
      Documentation/git-whatchanged.txt
  84. 1
      Documentation/git-write-tree.txt
  85. 3
      Documentation/gitcvs-migration.txt
  86. 1
      Documentation/gitdiffcore.txt
  87. 1
      Documentation/gitk.txt
  88. 1
      Documentation/gittutorial-2.txt
  89. 1
      Documentation/gittutorial.txt
  90. 1
      Documentation/gitworkflows.txt
  91. 1
      contrib/convert-objects/git-convert-objects.txt
  92. 1
      contrib/gitview/gitview.txt
  93. 1
      contrib/svn-fe/svn-fe.txt

1
Documentation/git-annotate.txt

@ -7,6 +7,7 @@ git-annotate - Annotate file lines with commit information @@ -7,6 +7,7 @@ git-annotate - Annotate file lines with commit information

SYNOPSIS
--------
[verse]
'git annotate' [options] file [revision]

DESCRIPTION

1
Documentation/git-bisect.txt

@ -8,6 +8,7 @@ git-bisect - Find by binary search the change that introduced a bug @@ -8,6 +8,7 @@ git-bisect - Find by binary search the change that introduced a bug

SYNOPSIS
--------
[verse]
'git bisect' <subcommand> <options>

DESCRIPTION

1
Documentation/git-cherry-pick.txt

@ -7,6 +7,7 @@ git-cherry-pick - Apply the changes introduced by some existing commits @@ -7,6 +7,7 @@ git-cherry-pick - Apply the changes introduced by some existing commits

SYNOPSIS
--------
[verse]
'git cherry-pick' [--edit] [-n] [-m parent-number] [-s] [-x] [--ff] <commit>...

DESCRIPTION

1
Documentation/git-cherry.txt

@ -7,6 +7,7 @@ git-cherry - Find commits not merged upstream @@ -7,6 +7,7 @@ git-cherry - Find commits not merged upstream

SYNOPSIS
--------
[verse]
'git cherry' [-v] [<upstream> [<head> [<limit>]]]

DESCRIPTION

1
Documentation/git-citool.txt

@ -7,6 +7,7 @@ git-citool - Graphical alternative to git-commit @@ -7,6 +7,7 @@ git-citool - Graphical alternative to git-commit

SYNOPSIS
--------
[verse]
'git citool'

DESCRIPTION

1
Documentation/git-commit-tree.txt

@ -8,6 +8,7 @@ git-commit-tree - Create a new commit object @@ -8,6 +8,7 @@ git-commit-tree - Create a new commit object

SYNOPSIS
--------
[verse]
'git commit-tree' <tree> [(-p <parent commit>)...] < changelog

DESCRIPTION

1
Documentation/git-count-objects.txt

@ -7,6 +7,7 @@ git-count-objects - Count unpacked number of objects and their disk consumption @@ -7,6 +7,7 @@ git-count-objects - Count unpacked number of objects and their disk consumption

SYNOPSIS
--------
[verse]
'git count-objects' [-v]

DESCRIPTION

1
Documentation/git-cvsexportcommit.txt

@ -8,6 +8,7 @@ git-cvsexportcommit - Export a single commit to a CVS checkout @@ -8,6 +8,7 @@ git-cvsexportcommit - Export a single commit to a CVS checkout

SYNOPSIS
--------
[verse]
'git cvsexportcommit' [-h] [-u] [-v] [-c] [-P] [-p] [-a] [-d cvsroot]
[-w cvsworkdir] [-W] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID


1
Documentation/git-diff-files.txt

@ -8,6 +8,7 @@ git-diff-files - Compares files in the working tree and the index @@ -8,6 +8,7 @@ git-diff-files - Compares files in the working tree and the index

SYNOPSIS
--------
[verse]
'git diff-files' [-q] [-0|-1|-2|-3|-c|--cc] [<common diff options>] [<path>...]

DESCRIPTION

1
Documentation/git-diff-index.txt

@ -8,6 +8,7 @@ git-diff-index - Compares content and mode of blobs between the index and reposi @@ -8,6 +8,7 @@ git-diff-index - Compares content and mode of blobs between the index and reposi

SYNOPSIS
--------
[verse]
'git diff-index' [-m] [--cached] [<common diff options>] <tree-ish> [<path>...]

DESCRIPTION

1
Documentation/git-difftool.txt

@ -7,6 +7,7 @@ git-difftool - Show changes using common diff tools @@ -7,6 +7,7 @@ git-difftool - Show changes using common diff tools

SYNOPSIS
--------
[verse]
'git difftool' [<options>] [<commit> [<commit>]] [--] [<path>...]

DESCRIPTION

1
Documentation/git-fast-export.txt

@ -8,6 +8,7 @@ git-fast-export - Git data exporter @@ -8,6 +8,7 @@ git-fast-export - Git data exporter

SYNOPSIS
--------
[verse]
'git fast-export [options]' | 'git fast-import'

DESCRIPTION

1
Documentation/git-fast-import.txt

@ -8,6 +8,7 @@ git-fast-import - Backend for fast Git data importers @@ -8,6 +8,7 @@ git-fast-import - Backend for fast Git data importers

SYNOPSIS
--------
[verse]
frontend | 'git fast-import' [options]

DESCRIPTION

1
Documentation/git-fetch-pack.txt

@ -8,6 +8,7 @@ git-fetch-pack - Receive missing objects from another repository @@ -8,6 +8,7 @@ git-fetch-pack - Receive missing objects from another repository

SYNOPSIS
--------
[verse]
'git fetch-pack' [--all] [--quiet|-q] [--keep|-k] [--thin] [--include-tag] [--upload-pack=<git-upload-pack>] [--depth=<n>] [--no-progress] [-v] [<host>:]<directory> [<refs>...]

DESCRIPTION

4
Documentation/git-fetch.txt

@ -8,12 +8,10 @@ git-fetch - Download objects and refs from another repository @@ -8,12 +8,10 @@ git-fetch - Download objects and refs from another repository

SYNOPSIS
--------
[verse]
'git fetch' [<options>] [<repository> [<refspec>...]]

'git fetch' [<options>] <group>

'git fetch' --multiple [<options>] [(<repository> | <group>)...]

'git fetch' --all [<options>]



1
Documentation/git-fsck-objects.txt

@ -8,6 +8,7 @@ git-fsck-objects - Verifies the connectivity and validity of the objects in the @@ -8,6 +8,7 @@ git-fsck-objects - Verifies the connectivity and validity of the objects in the

SYNOPSIS
--------
[verse]
'git fsck-objects' ...

DESCRIPTION

1
Documentation/git-gc.txt

@ -8,6 +8,7 @@ git-gc - Cleanup unnecessary files and optimize the local repository @@ -8,6 +8,7 @@ git-gc - Cleanup unnecessary files and optimize the local repository

SYNOPSIS
--------
[verse]
'git gc' [--aggressive] [--auto] [--quiet] [--prune=<date> | --no-prune]

DESCRIPTION

1
Documentation/git-get-tar-commit-id.txt

@ -8,6 +8,7 @@ git-get-tar-commit-id - Extract commit ID from an archive created using git-arch @@ -8,6 +8,7 @@ git-get-tar-commit-id - Extract commit ID from an archive created using git-arch

SYNOPSIS
--------
[verse]
'git get-tar-commit-id' < <tarfile>



1
Documentation/git-gui.txt

@ -7,6 +7,7 @@ git-gui - A portable graphical interface to Git @@ -7,6 +7,7 @@ git-gui - A portable graphical interface to Git

SYNOPSIS
--------
[verse]
'git gui' [<command>] [arguments]

DESCRIPTION

1
Documentation/git-help.txt

@ -7,6 +7,7 @@ git-help - display help information about git @@ -7,6 +7,7 @@ git-help - display help information about git

SYNOPSIS
--------
[verse]
'git help' [-a|--all|-i|--info|-m|--man|-w|--web] [COMMAND]

DESCRIPTION

1
Documentation/git-http-fetch.txt

@ -8,6 +8,7 @@ git-http-fetch - Download from a remote git repository via HTTP @@ -8,6 +8,7 @@ git-http-fetch - Download from a remote git repository via HTTP

SYNOPSIS
--------
[verse]
'git http-fetch' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [--stdin] <commit> <url>

DESCRIPTION

1
Documentation/git-http-push.txt

@ -8,6 +8,7 @@ git-http-push - Push objects over HTTP/DAV to another repository @@ -8,6 +8,7 @@ git-http-push - Push objects over HTTP/DAV to another repository

SYNOPSIS
--------
[verse]
'git http-push' [--all] [--dry-run] [--force] [--verbose] <url> <ref> [<ref>...]

DESCRIPTION

1
Documentation/git-imap-send.txt

@ -8,6 +8,7 @@ git-imap-send - Send a collection of patches from stdin to an IMAP folder @@ -8,6 +8,7 @@ git-imap-send - Send a collection of patches from stdin to an IMAP folder

SYNOPSIS
--------
[verse]
'git imap-send'



1
Documentation/git-init-db.txt

@ -8,6 +8,7 @@ git-init-db - Creates an empty git repository @@ -8,6 +8,7 @@ git-init-db - Creates an empty git repository

SYNOPSIS
--------
[verse]
'git init-db' [-q | --quiet] [--bare] [--template=<template_directory>] [--separate-git-dir <git dir>] [--shared[=<permissions>]]



1
Documentation/git-init.txt

@ -8,6 +8,7 @@ git-init - Create an empty git repository or reinitialize an existing one @@ -8,6 +8,7 @@ git-init - Create an empty git repository or reinitialize an existing one

SYNOPSIS
--------
[verse]
'git init' [-q | --quiet] [--bare] [--template=<template_directory>]
[--separate-git-dir <git dir>]
[--shared[=<permissions>]] [directory]

1
Documentation/git-log.txt

@ -8,6 +8,7 @@ git-log - Show commit logs @@ -8,6 +8,7 @@ git-log - Show commit logs

SYNOPSIS
--------
[verse]
'git log' [<options>] [<since>..<until>] [[\--] <path>...]

DESCRIPTION

1
Documentation/git-lost-found.txt

@ -7,6 +7,7 @@ git-lost-found - Recover lost refs that luckily have not yet been pruned @@ -7,6 +7,7 @@ git-lost-found - Recover lost refs that luckily have not yet been pruned

SYNOPSIS
--------
[verse]
'git lost-found'

DESCRIPTION

1
Documentation/git-mailinfo.txt

@ -8,6 +8,7 @@ git-mailinfo - Extracts patch and authorship from a single e-mail message @@ -8,6 +8,7 @@ git-mailinfo - Extracts patch and authorship from a single e-mail message

SYNOPSIS
--------
[verse]
'git mailinfo' [-k|-b] [-u | --encoding=<encoding> | -n] [--scissors] <msg> <patch>



1
Documentation/git-mailsplit.txt

@ -7,6 +7,7 @@ git-mailsplit - Simple UNIX mbox splitter program @@ -7,6 +7,7 @@ git-mailsplit - Simple UNIX mbox splitter program

SYNOPSIS
--------
[verse]
'git mailsplit' [-b] [-f<nn>] [-d<prec>] [--keep-cr] -o<directory> [--] [(<mbox>|<Maildir>)...]

DESCRIPTION

1
Documentation/git-merge-index.txt

@ -8,6 +8,7 @@ git-merge-index - Run a merge for files needing merging @@ -8,6 +8,7 @@ git-merge-index - Run a merge for files needing merging

SYNOPSIS
--------
[verse]
'git merge-index' [-o] [-q] <merge-program> (-a | [--] <file>*)

DESCRIPTION

1
Documentation/git-merge-one-file.txt

@ -8,6 +8,7 @@ git-merge-one-file - The standard helper program to use with git-merge-index @@ -8,6 +8,7 @@ git-merge-one-file - The standard helper program to use with git-merge-index

SYNOPSIS
--------
[verse]
'git merge-one-file'

DESCRIPTION

1
Documentation/git-merge-tree.txt

@ -8,6 +8,7 @@ git-merge-tree - Show three-way merge without touching index @@ -8,6 +8,7 @@ git-merge-tree - Show three-way merge without touching index

SYNOPSIS
--------
[verse]
'git merge-tree' <base-tree> <branch1> <branch2>

DESCRIPTION

1
Documentation/git-mergetool--lib.txt

@ -7,6 +7,7 @@ git-mergetool--lib - Common git merge tool shell scriptlets @@ -7,6 +7,7 @@ git-mergetool--lib - Common git merge tool shell scriptlets

SYNOPSIS
--------
[verse]
'TOOL_MODE=(diff|merge) . "$(git --exec-path)/git-mergetool--lib"'

DESCRIPTION

1
Documentation/git-mergetool.txt

@ -7,6 +7,7 @@ git-mergetool - Run merge conflict resolution tools to resolve merge conflicts @@ -7,6 +7,7 @@ git-mergetool - Run merge conflict resolution tools to resolve merge conflicts

SYNOPSIS
--------
[verse]
'git mergetool' [--tool=<tool>] [-y|--no-prompt|--prompt] [<file>...]

DESCRIPTION

1
Documentation/git-mktag.txt

@ -8,6 +8,7 @@ git-mktag - Creates a tag object @@ -8,6 +8,7 @@ git-mktag - Creates a tag object

SYNOPSIS
--------
[verse]
'git mktag' < signature_file

DESCRIPTION

1
Documentation/git-mktree.txt

@ -8,6 +8,7 @@ git-mktree - Build a tree-object from ls-tree formatted text @@ -8,6 +8,7 @@ git-mktree - Build a tree-object from ls-tree formatted text

SYNOPSIS
--------
[verse]
'git mktree' [-z] [--missing] [--batch]

DESCRIPTION

1
Documentation/git-mv.txt

@ -8,6 +8,7 @@ git-mv - Move or rename a file, a directory, or a symlink @@ -8,6 +8,7 @@ git-mv - Move or rename a file, a directory, or a symlink

SYNOPSIS
--------
[verse]
'git mv' <options>... <args>...

DESCRIPTION

1
Documentation/git-pack-redundant.txt

@ -8,6 +8,7 @@ git-pack-redundant - Find redundant pack files @@ -8,6 +8,7 @@ git-pack-redundant - Find redundant pack files

SYNOPSIS
--------
[verse]
'git pack-redundant' [ --verbose ] [ --alt-odb ] < --all | .pack filename ... >

DESCRIPTION

1
Documentation/git-pack-refs.txt

@ -7,6 +7,7 @@ git-pack-refs - Pack heads and tags for efficient repository access @@ -7,6 +7,7 @@ git-pack-refs - Pack heads and tags for efficient repository access

SYNOPSIS
--------
[verse]
'git pack-refs' [--all] [--no-prune]

DESCRIPTION

1
Documentation/git-parse-remote.txt

@ -8,6 +8,7 @@ git-parse-remote - Routines to help parsing remote repository access parameters @@ -8,6 +8,7 @@ git-parse-remote - Routines to help parsing remote repository access parameters

SYNOPSIS
--------
[verse]
'. "$(git --exec-path)/git-parse-remote"'

DESCRIPTION

1
Documentation/git-patch-id.txt

@ -7,6 +7,7 @@ git-patch-id - Compute unique ID for a patch @@ -7,6 +7,7 @@ git-patch-id - Compute unique ID for a patch

SYNOPSIS
--------
[verse]
'git patch-id' < <patch>

DESCRIPTION

1
Documentation/git-peek-remote.txt

@ -8,6 +8,7 @@ git-peek-remote - List the references in a remote repository @@ -8,6 +8,7 @@ git-peek-remote - List the references in a remote repository

SYNOPSIS
--------
[verse]
'git peek-remote' [--upload-pack=<git-upload-pack>] [<host>:]<directory>

DESCRIPTION

1
Documentation/git-prune-packed.txt

@ -8,6 +8,7 @@ git-prune-packed - Remove extra objects that are already in pack files @@ -8,6 +8,7 @@ git-prune-packed - Remove extra objects that are already in pack files

SYNOPSIS
--------
[verse]
'git prune-packed' [-n|--dry-run] [-q|--quiet]



1
Documentation/git-prune.txt

@ -8,6 +8,7 @@ git-prune - Prune all unreachable objects from the object database @@ -8,6 +8,7 @@ git-prune - Prune all unreachable objects from the object database

SYNOPSIS
--------
[verse]
'git prune' [-n] [-v] [--expire <expire>] [--] [<head>...]

DESCRIPTION

1
Documentation/git-pull.txt

@ -8,6 +8,7 @@ git-pull - Fetch from and merge with another repository or a local branch @@ -8,6 +8,7 @@ git-pull - Fetch from and merge with another repository or a local branch

SYNOPSIS
--------
[verse]
'git pull' [options] [<repository> [<refspec>...]]



1
Documentation/git-read-tree.txt

@ -8,6 +8,7 @@ git-read-tree - Reads tree information into the index @@ -8,6 +8,7 @@ git-read-tree - Reads tree information into the index

SYNOPSIS
--------
[verse]
'git read-tree' [[-m [--trivial] [--aggressive] | --reset | --prefix=<prefix>]
[-u [--exclude-per-directory=<gitignore>] | -i]]
[--index-output=<file>] [--no-sparse-checkout]

1
Documentation/git-rebase.txt

@ -12,7 +12,6 @@ SYNOPSIS @@ -12,7 +12,6 @@ SYNOPSIS
[<upstream>] [<branch>]
'git rebase' [-i | --interactive] [options] --onto <newbase>
--root [<branch>]

'git rebase' --continue | --skip | --abort

DESCRIPTION

1
Documentation/git-receive-pack.txt

@ -8,6 +8,7 @@ git-receive-pack - Receive what is pushed into the repository @@ -8,6 +8,7 @@ git-receive-pack - Receive what is pushed into the repository

SYNOPSIS
--------
[verse]
'git-receive-pack' <directory>

DESCRIPTION

1
Documentation/git-reflog.txt

@ -8,6 +8,7 @@ git-reflog - Manage reflog information @@ -8,6 +8,7 @@ git-reflog - Manage reflog information

SYNOPSIS
--------
[verse]
'git reflog' <subcommand> <options>

DESCRIPTION

1
Documentation/git-relink.txt

@ -7,6 +7,7 @@ git-relink - Hardlink common objects in local repositories @@ -7,6 +7,7 @@ git-relink - Hardlink common objects in local repositories

SYNOPSIS
--------
[verse]
'git relink' [--safe] <dir>... <master_dir>

DESCRIPTION

1
Documentation/git-remote-ext.txt

@ -7,6 +7,7 @@ git-remote-ext - Bridge smart transport to external command. @@ -7,6 +7,7 @@ git-remote-ext - Bridge smart transport to external command.

SYNOPSIS
--------
[verse]
git remote add <nick> "ext::<command>[ <arguments>...]"

DESCRIPTION

1
Documentation/git-remote-helpers.txt

@ -7,6 +7,7 @@ git-remote-helpers - Helper programs to interact with remote repositories @@ -7,6 +7,7 @@ git-remote-helpers - Helper programs to interact with remote repositories

SYNOPSIS
--------
[verse]
'git remote-<transport>' <repository> [<URL>]

DESCRIPTION

1
Documentation/git-repack.txt

@ -8,6 +8,7 @@ git-repack - Pack unpacked objects in a repository @@ -8,6 +8,7 @@ git-repack - Pack unpacked objects in a repository

SYNOPSIS
--------
[verse]
'git repack' [-a] [-A] [-d] [-f] [-F] [-l] [-n] [-q] [--window=<n>] [--depth=<n>]

DESCRIPTION

1
Documentation/git-repo-config.txt

@ -8,6 +8,7 @@ git-repo-config - Get and set repository or global options @@ -8,6 +8,7 @@ git-repo-config - Get and set repository or global options

SYNOPSIS
--------
[verse]
'git repo-config' ...



1
Documentation/git-request-pull.txt

@ -7,6 +7,7 @@ git-request-pull - Generates a summary of pending changes @@ -7,6 +7,7 @@ git-request-pull - Generates a summary of pending changes

SYNOPSIS
--------
[verse]
'git request-pull' [-p] <start> <url> [<end>]

DESCRIPTION

1
Documentation/git-rerere.txt

@ -7,6 +7,7 @@ git-rerere - Reuse recorded resolution of conflicted merges @@ -7,6 +7,7 @@ git-rerere - Reuse recorded resolution of conflicted merges

SYNOPSIS
--------
[verse]
'git rerere' ['clear'|'forget' <pathspec>|'diff'|'status'|'gc']

DESCRIPTION

1
Documentation/git-rev-parse.txt

@ -8,6 +8,7 @@ git-rev-parse - Pick out and massage parameters @@ -8,6 +8,7 @@ git-rev-parse - Pick out and massage parameters

SYNOPSIS
--------
[verse]
'git rev-parse' [ --option ] <args>...

DESCRIPTION

1
Documentation/git-revert.txt

@ -7,6 +7,7 @@ git-revert - Revert some existing commits @@ -7,6 +7,7 @@ git-revert - Revert some existing commits

SYNOPSIS
--------
[verse]
'git revert' [--edit | --no-edit] [-n] [-m parent-number] [-s] <commit>...

DESCRIPTION

1
Documentation/git-rm.txt

@ -7,6 +7,7 @@ git-rm - Remove files from the working tree and from the index @@ -7,6 +7,7 @@ git-rm - Remove files from the working tree and from the index

SYNOPSIS
--------
[verse]
'git rm' [-f | --force] [-n] [-r] [--cached] [--ignore-unmatch] [--quiet] [--] <file>...

DESCRIPTION

1
Documentation/git-send-email.txt

@ -8,6 +8,7 @@ git-send-email - Send a collection of patches as emails @@ -8,6 +8,7 @@ git-send-email - Send a collection of patches as emails

SYNOPSIS
--------
[verse]
'git send-email' [options] <file|directory|rev-list options>...



1
Documentation/git-send-pack.txt

@ -8,6 +8,7 @@ git-send-pack - Push objects over git protocol to another repository @@ -8,6 +8,7 @@ git-send-pack - Push objects over git protocol to another repository

SYNOPSIS
--------
[verse]
'git send-pack' [--all] [--dry-run] [--force] [--receive-pack=<git-receive-pack>] [--verbose] [--thin] [<host>:]<directory> [<ref>...]

DESCRIPTION

1
Documentation/git-sh-i18n.txt

@ -7,6 +7,7 @@ git-sh-i18n - Git's i18n setup code for shell scripts @@ -7,6 +7,7 @@ git-sh-i18n - Git's i18n setup code for shell scripts

SYNOPSIS
--------
[verse]
'. "$(git --exec-path)/git-sh-i18n"'

DESCRIPTION

1
Documentation/git-sh-setup.txt

@ -7,6 +7,7 @@ git-sh-setup - Common git shell script setup code @@ -7,6 +7,7 @@ git-sh-setup - Common git shell script setup code

SYNOPSIS
--------
[verse]
'. "$(git --exec-path)/git-sh-setup"'

DESCRIPTION

1
Documentation/git-shell.txt

@ -8,6 +8,7 @@ git-shell - Restricted login shell for Git-only SSH access @@ -8,6 +8,7 @@ git-shell - Restricted login shell for Git-only SSH access

SYNOPSIS
--------
[verse]
'git shell' [-c <command> <argument>]

DESCRIPTION

1
Documentation/git-show-branch.txt

@ -13,7 +13,6 @@ SYNOPSIS @@ -13,7 +13,6 @@ SYNOPSIS
[--more=<n> | --list | --independent | --merge-base]
[--no-name | --sha1-name] [--topics]
[(<rev> | <glob>)...]

'git show-branch' (-g|--reflog)[=<n>[,<base>]] [--list] [<ref>]

DESCRIPTION

1
Documentation/git-show-index.txt

@ -8,6 +8,7 @@ git-show-index - Show packed archive index @@ -8,6 +8,7 @@ git-show-index - Show packed archive index

SYNOPSIS
--------
[verse]
'git show-index' < idx-file



1
Documentation/git-show.txt

@ -8,6 +8,7 @@ git-show - Show various types of objects @@ -8,6 +8,7 @@ git-show - Show various types of objects

SYNOPSIS
--------
[verse]
'git show' [options] <object>...

DESCRIPTION

1
Documentation/git-status.txt

@ -8,6 +8,7 @@ git-status - Show the working tree status @@ -8,6 +8,7 @@ git-status - Show the working tree status

SYNOPSIS
--------
[verse]
'git status' [<options>...] [--] [<pathspec>...]

DESCRIPTION

1
Documentation/git-stripspace.txt

@ -8,6 +8,7 @@ git-stripspace - Filter out empty lines @@ -8,6 +8,7 @@ git-stripspace - Filter out empty lines

SYNOPSIS
--------
[verse]
'git stripspace' [-s | --strip-comments] < <stream>

DESCRIPTION

1
Documentation/git-svn.txt

@ -7,6 +7,7 @@ git-svn - Bidirectional operation between a Subversion repository and git @@ -7,6 +7,7 @@ git-svn - Bidirectional operation between a Subversion repository and git

SYNOPSIS
--------
[verse]
'git svn' <command> [options] [arguments]

DESCRIPTION

1
Documentation/git-symbolic-ref.txt

@ -7,6 +7,7 @@ git-symbolic-ref - Read and modify symbolic refs @@ -7,6 +7,7 @@ git-symbolic-ref - Read and modify symbolic refs

SYNOPSIS
--------
[verse]
'git symbolic-ref' [-q] [-m <reason>] <name> [<ref>]

DESCRIPTION

1
Documentation/git-tar-tree.txt

@ -8,6 +8,7 @@ git-tar-tree - Create a tar archive of the files in the named tree object @@ -8,6 +8,7 @@ git-tar-tree - Create a tar archive of the files in the named tree object

SYNOPSIS
--------
[verse]
'git tar-tree' [--remote=<repo>] <tree-ish> [ <base> ]

DESCRIPTION

1
Documentation/git-unpack-file.txt

@ -9,6 +9,7 @@ git-unpack-file - Creates a temporary file with a blob's contents @@ -9,6 +9,7 @@ git-unpack-file - Creates a temporary file with a blob's contents

SYNOPSIS
--------
[verse]
'git unpack-file' <blob>

DESCRIPTION

1
Documentation/git-unpack-objects.txt

@ -8,6 +8,7 @@ git-unpack-objects - Unpack objects from a packed archive @@ -8,6 +8,7 @@ git-unpack-objects - Unpack objects from a packed archive

SYNOPSIS
--------
[verse]
'git unpack-objects' [-n] [-q] [-r] [--strict] <pack-file



1
Documentation/git-update-ref.txt

@ -7,6 +7,7 @@ git-update-ref - Update the object name stored in a ref safely @@ -7,6 +7,7 @@ git-update-ref - Update the object name stored in a ref safely

SYNOPSIS
--------
[verse]
'git update-ref' [-m <reason>] (-d <ref> [<oldvalue>] | [--no-deref] <ref> <newvalue> [<oldvalue>])

DESCRIPTION

1
Documentation/git-update-server-info.txt

@ -8,6 +8,7 @@ git-update-server-info - Update auxiliary info file to help dumb servers @@ -8,6 +8,7 @@ git-update-server-info - Update auxiliary info file to help dumb servers

SYNOPSIS
--------
[verse]
'git update-server-info' [--force]

DESCRIPTION

1
Documentation/git-upload-archive.txt

@ -8,6 +8,7 @@ git-upload-archive - Send archive back to git-archive @@ -8,6 +8,7 @@ git-upload-archive - Send archive back to git-archive

SYNOPSIS
--------
[verse]
'git upload-archive' <directory>

DESCRIPTION

1
Documentation/git-upload-pack.txt

@ -8,6 +8,7 @@ git-upload-pack - Send objects packed back to git-fetch-pack @@ -8,6 +8,7 @@ git-upload-pack - Send objects packed back to git-fetch-pack

SYNOPSIS
--------
[verse]
'git-upload-pack' [--strict] [--timeout=<n>] <directory>

DESCRIPTION

1
Documentation/git-var.txt

@ -8,6 +8,7 @@ git-var - Show a git logical variable @@ -8,6 +8,7 @@ git-var - Show a git logical variable

SYNOPSIS
--------
[verse]
'git var' ( -l | <variable> )

DESCRIPTION

1
Documentation/git-verify-pack.txt

@ -8,6 +8,7 @@ git-verify-pack - Validate packed git archive files @@ -8,6 +8,7 @@ git-verify-pack - Validate packed git archive files

SYNOPSIS
--------
[verse]
'git verify-pack' [-v|--verbose] [-s|--stat-only] [--] <pack>.idx ...



1
Documentation/git-verify-tag.txt

@ -7,6 +7,7 @@ git-verify-tag - Check the GPG signature of tags @@ -7,6 +7,7 @@ git-verify-tag - Check the GPG signature of tags

SYNOPSIS
--------
[verse]
'git verify-tag' <tag>...

DESCRIPTION

1
Documentation/git-web--browse.txt

@ -7,6 +7,7 @@ git-web--browse - git helper script to launch a web browser @@ -7,6 +7,7 @@ git-web--browse - git helper script to launch a web browser

SYNOPSIS
--------
[verse]
'git web{litdd}browse' [OPTIONS] URL/FILE ...

DESCRIPTION

1
Documentation/git-whatchanged.txt

@ -8,6 +8,7 @@ git-whatchanged - Show logs with difference each commit introduces @@ -8,6 +8,7 @@ git-whatchanged - Show logs with difference each commit introduces

SYNOPSIS
--------
[verse]
'git whatchanged' <option>...

DESCRIPTION

1
Documentation/git-write-tree.txt

@ -8,6 +8,7 @@ git-write-tree - Create a tree object from the current index @@ -8,6 +8,7 @@ git-write-tree - Create a tree object from the current index

SYNOPSIS
--------
[verse]
'git write-tree' [--missing-ok] [--prefix=<prefix>/]

DESCRIPTION

3
Documentation/gitcvs-migration.txt

@ -7,7 +7,8 @@ gitcvs-migration - git for CVS users @@ -7,7 +7,8 @@ gitcvs-migration - git for CVS users

SYNOPSIS
--------
git cvsimport *
[verse]
'git cvsimport' *

DESCRIPTION
-----------

1
Documentation/gitdiffcore.txt

@ -7,6 +7,7 @@ gitdiffcore - Tweaking diff output @@ -7,6 +7,7 @@ gitdiffcore - Tweaking diff output

SYNOPSIS
--------
[verse]
'git diff' *

DESCRIPTION

1
Documentation/gitk.txt

@ -7,6 +7,7 @@ gitk - The git repository browser @@ -7,6 +7,7 @@ gitk - The git repository browser

SYNOPSIS
--------
[verse]
'gitk' [<option>...] [<revs>] [--] [<path>...]

DESCRIPTION

1
Documentation/gittutorial-2.txt

@ -7,6 +7,7 @@ gittutorial-2 - A tutorial introduction to git: part two @@ -7,6 +7,7 @@ gittutorial-2 - A tutorial introduction to git: part two

SYNOPSIS
--------
[verse]
git *

DESCRIPTION

1
Documentation/gittutorial.txt

@ -7,6 +7,7 @@ gittutorial - A tutorial introduction to git (for version 1.5.1 or newer) @@ -7,6 +7,7 @@ gittutorial - A tutorial introduction to git (for version 1.5.1 or newer)

SYNOPSIS
--------
[verse]
git *

DESCRIPTION

1
Documentation/gitworkflows.txt

@ -7,6 +7,7 @@ gitworkflows - An overview of recommended workflows with git @@ -7,6 +7,7 @@ gitworkflows - An overview of recommended workflows with git

SYNOPSIS
--------
[verse]
git *



1
contrib/convert-objects/git-convert-objects.txt

@ -8,6 +8,7 @@ git-convert-objects - Converts old-style git repository @@ -8,6 +8,7 @@ git-convert-objects - Converts old-style git repository

SYNOPSIS
--------
[verse]
'git-convert-objects'

DESCRIPTION

1
contrib/gitview/gitview.txt

@ -7,6 +7,7 @@ gitview - A GTK based repository browser for git @@ -7,6 +7,7 @@ gitview - A GTK based repository browser for git

SYNOPSIS
--------
[verse]
'gitview' [options] [args]

DESCRIPTION

1
contrib/svn-fe/svn-fe.txt

@ -7,6 +7,7 @@ svn-fe - convert an SVN "dumpfile" to a fast-import stream @@ -7,6 +7,7 @@ svn-fe - convert an SVN "dumpfile" to a fast-import stream

SYNOPSIS
--------
[verse]
svnadmin dump --incremental REPO | svn-fe [url] | git fast-import

DESCRIPTION

Loading…
Cancel
Save