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>
This commit is contained in:

committed by
Junio C Hamano

parent
f696543dad
commit
7791a1d9b9
@ -7,6 +7,7 @@ git-annotate - Annotate file lines with commit information
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git annotate' [options] file [revision]
|
'git annotate' [options] file [revision]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-bisect - Find by binary search the change that introduced a bug
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git bisect' <subcommand> <options>
|
'git bisect' <subcommand> <options>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-cherry-pick - Apply the changes introduced by some existing commits
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git cherry-pick' [--edit] [-n] [-m parent-number] [-s] [-x] [--ff] <commit>...
|
'git cherry-pick' [--edit] [-n] [-m parent-number] [-s] [-x] [--ff] <commit>...
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-cherry - Find commits not merged upstream
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git cherry' [-v] [<upstream> [<head> [<limit>]]]
|
'git cherry' [-v] [<upstream> [<head> [<limit>]]]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-citool - Graphical alternative to git-commit
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git citool'
|
'git citool'
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-commit-tree - Create a new commit object
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git commit-tree' <tree> [(-p <parent commit>)...] < changelog
|
'git commit-tree' <tree> [(-p <parent commit>)...] < changelog
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-count-objects - Count unpacked number of objects and their disk consumption
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git count-objects' [-v]
|
'git count-objects' [-v]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-cvsexportcommit - Export a single commit to a CVS checkout
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git cvsexportcommit' [-h] [-u] [-v] [-c] [-P] [-p] [-a] [-d cvsroot]
|
'git cvsexportcommit' [-h] [-u] [-v] [-c] [-P] [-p] [-a] [-d cvsroot]
|
||||||
[-w cvsworkdir] [-W] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID
|
[-w cvsworkdir] [-W] [-f] [-m msgprefix] [PARENTCOMMIT] COMMITID
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ git-diff-files - Compares files in the working tree and the index
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git diff-files' [-q] [-0|-1|-2|-3|-c|--cc] [<common diff options>] [<path>...]
|
'git diff-files' [-q] [-0|-1|-2|-3|-c|--cc] [<common diff options>] [<path>...]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-diff-index - Compares content and mode of blobs between the index and reposi
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git diff-index' [-m] [--cached] [<common diff options>] <tree-ish> [<path>...]
|
'git diff-index' [-m] [--cached] [<common diff options>] <tree-ish> [<path>...]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-difftool - Show changes using common diff tools
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git difftool' [<options>] [<commit> [<commit>]] [--] [<path>...]
|
'git difftool' [<options>] [<commit> [<commit>]] [--] [<path>...]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-fast-export - Git data exporter
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git fast-export [options]' | 'git fast-import'
|
'git fast-export [options]' | 'git fast-import'
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-fast-import - Backend for fast Git data importers
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
frontend | 'git fast-import' [options]
|
frontend | 'git fast-import' [options]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-fetch-pack - Receive missing objects from another repository
|
|||||||
|
|
||||||
SYNOPSIS
|
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>...]
|
'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
|
DESCRIPTION
|
||||||
|
@ -8,12 +8,10 @@ git-fetch - Download objects and refs from another repository
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git fetch' [<options>] [<repository> [<refspec>...]]
|
'git fetch' [<options>] [<repository> [<refspec>...]]
|
||||||
|
|
||||||
'git fetch' [<options>] <group>
|
'git fetch' [<options>] <group>
|
||||||
|
|
||||||
'git fetch' --multiple [<options>] [(<repository> | <group>)...]
|
'git fetch' --multiple [<options>] [(<repository> | <group>)...]
|
||||||
|
|
||||||
'git fetch' --all [<options>]
|
'git fetch' --all [<options>]
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ git-fsck-objects - Verifies the connectivity and validity of the objects in the
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git fsck-objects' ...
|
'git fsck-objects' ...
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-gc - Cleanup unnecessary files and optimize the local repository
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git gc' [--aggressive] [--auto] [--quiet] [--prune=<date> | --no-prune]
|
'git gc' [--aggressive] [--auto] [--quiet] [--prune=<date> | --no-prune]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-get-tar-commit-id - Extract commit ID from an archive created using git-arch
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git get-tar-commit-id' < <tarfile>
|
'git get-tar-commit-id' < <tarfile>
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@ git-gui - A portable graphical interface to Git
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git gui' [<command>] [arguments]
|
'git gui' [<command>] [arguments]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-help - display help information about git
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git help' [-a|--all|-i|--info|-m|--man|-w|--web] [COMMAND]
|
'git help' [-a|--all|-i|--info|-m|--man|-w|--web] [COMMAND]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-http-fetch - Download from a remote git repository via HTTP
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git http-fetch' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [--stdin] <commit> <url>
|
'git http-fetch' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [--stdin] <commit> <url>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-http-push - Push objects over HTTP/DAV to another repository
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git http-push' [--all] [--dry-run] [--force] [--verbose] <url> <ref> [<ref>...]
|
'git http-push' [--all] [--dry-run] [--force] [--verbose] <url> <ref> [<ref>...]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-imap-send - Send a collection of patches from stdin to an IMAP folder
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git imap-send'
|
'git imap-send'
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ git-init-db - Creates an empty git repository
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git init-db' [-q | --quiet] [--bare] [--template=<template_directory>] [--separate-git-dir <git dir>] [--shared[=<permissions>]]
|
'git init-db' [-q | --quiet] [--bare] [--template=<template_directory>] [--separate-git-dir <git dir>] [--shared[=<permissions>]]
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ git-init - Create an empty git repository or reinitialize an existing one
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git init' [-q | --quiet] [--bare] [--template=<template_directory>]
|
'git init' [-q | --quiet] [--bare] [--template=<template_directory>]
|
||||||
[--separate-git-dir <git dir>]
|
[--separate-git-dir <git dir>]
|
||||||
[--shared[=<permissions>]] [directory]
|
[--shared[=<permissions>]] [directory]
|
||||||
|
@ -8,6 +8,7 @@ git-log - Show commit logs
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git log' [<options>] [<since>..<until>] [[\--] <path>...]
|
'git log' [<options>] [<since>..<until>] [[\--] <path>...]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-lost-found - Recover lost refs that luckily have not yet been pruned
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git lost-found'
|
'git lost-found'
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-mailinfo - Extracts patch and authorship from a single e-mail message
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git mailinfo' [-k|-b] [-u | --encoding=<encoding> | -n] [--scissors] <msg> <patch>
|
'git mailinfo' [-k|-b] [-u | --encoding=<encoding> | -n] [--scissors] <msg> <patch>
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@ git-mailsplit - Simple UNIX mbox splitter program
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git mailsplit' [-b] [-f<nn>] [-d<prec>] [--keep-cr] -o<directory> [--] [(<mbox>|<Maildir>)...]
|
'git mailsplit' [-b] [-f<nn>] [-d<prec>] [--keep-cr] -o<directory> [--] [(<mbox>|<Maildir>)...]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-merge-index - Run a merge for files needing merging
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git merge-index' [-o] [-q] <merge-program> (-a | [--] <file>*)
|
'git merge-index' [-o] [-q] <merge-program> (-a | [--] <file>*)
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-merge-one-file - The standard helper program to use with git-merge-index
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git merge-one-file'
|
'git merge-one-file'
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-merge-tree - Show three-way merge without touching index
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git merge-tree' <base-tree> <branch1> <branch2>
|
'git merge-tree' <base-tree> <branch1> <branch2>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-mergetool--lib - Common git merge tool shell scriptlets
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'TOOL_MODE=(diff|merge) . "$(git --exec-path)/git-mergetool--lib"'
|
'TOOL_MODE=(diff|merge) . "$(git --exec-path)/git-mergetool--lib"'
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-mergetool - Run merge conflict resolution tools to resolve merge conflicts
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git mergetool' [--tool=<tool>] [-y|--no-prompt|--prompt] [<file>...]
|
'git mergetool' [--tool=<tool>] [-y|--no-prompt|--prompt] [<file>...]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-mktag - Creates a tag object
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git mktag' < signature_file
|
'git mktag' < signature_file
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-mktree - Build a tree-object from ls-tree formatted text
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git mktree' [-z] [--missing] [--batch]
|
'git mktree' [-z] [--missing] [--batch]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-mv - Move or rename a file, a directory, or a symlink
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git mv' <options>... <args>...
|
'git mv' <options>... <args>...
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-pack-redundant - Find redundant pack files
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git pack-redundant' [ --verbose ] [ --alt-odb ] < --all | .pack filename ... >
|
'git pack-redundant' [ --verbose ] [ --alt-odb ] < --all | .pack filename ... >
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-pack-refs - Pack heads and tags for efficient repository access
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git pack-refs' [--all] [--no-prune]
|
'git pack-refs' [--all] [--no-prune]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-parse-remote - Routines to help parsing remote repository access parameters
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'. "$(git --exec-path)/git-parse-remote"'
|
'. "$(git --exec-path)/git-parse-remote"'
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-patch-id - Compute unique ID for a patch
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git patch-id' < <patch>
|
'git patch-id' < <patch>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-peek-remote - List the references in a remote repository
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git peek-remote' [--upload-pack=<git-upload-pack>] [<host>:]<directory>
|
'git peek-remote' [--upload-pack=<git-upload-pack>] [<host>:]<directory>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-prune-packed - Remove extra objects that are already in pack files
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git prune-packed' [-n|--dry-run] [-q|--quiet]
|
'git prune-packed' [-n|--dry-run] [-q|--quiet]
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ git-prune - Prune all unreachable objects from the object database
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git prune' [-n] [-v] [--expire <expire>] [--] [<head>...]
|
'git prune' [-n] [-v] [--expire <expire>] [--] [<head>...]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-pull - Fetch from and merge with another repository or a local branch
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git pull' [options] [<repository> [<refspec>...]]
|
'git pull' [options] [<repository> [<refspec>...]]
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ git-read-tree - Reads tree information into the index
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git read-tree' [[-m [--trivial] [--aggressive] | --reset | --prefix=<prefix>]
|
'git read-tree' [[-m [--trivial] [--aggressive] | --reset | --prefix=<prefix>]
|
||||||
[-u [--exclude-per-directory=<gitignore>] | -i]]
|
[-u [--exclude-per-directory=<gitignore>] | -i]]
|
||||||
[--index-output=<file>] [--no-sparse-checkout]
|
[--index-output=<file>] [--no-sparse-checkout]
|
||||||
|
@ -12,7 +12,6 @@ SYNOPSIS
|
|||||||
[<upstream>] [<branch>]
|
[<upstream>] [<branch>]
|
||||||
'git rebase' [-i | --interactive] [options] --onto <newbase>
|
'git rebase' [-i | --interactive] [options] --onto <newbase>
|
||||||
--root [<branch>]
|
--root [<branch>]
|
||||||
|
|
||||||
'git rebase' --continue | --skip | --abort
|
'git rebase' --continue | --skip | --abort
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-receive-pack - Receive what is pushed into the repository
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git-receive-pack' <directory>
|
'git-receive-pack' <directory>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-reflog - Manage reflog information
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git reflog' <subcommand> <options>
|
'git reflog' <subcommand> <options>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-relink - Hardlink common objects in local repositories
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git relink' [--safe] <dir>... <master_dir>
|
'git relink' [--safe] <dir>... <master_dir>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-remote-ext - Bridge smart transport to external command.
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
git remote add <nick> "ext::<command>[ <arguments>...]"
|
git remote add <nick> "ext::<command>[ <arguments>...]"
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-remote-helpers - Helper programs to interact with remote repositories
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git remote-<transport>' <repository> [<URL>]
|
'git remote-<transport>' <repository> [<URL>]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-repack - Pack unpacked objects in a repository
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git repack' [-a] [-A] [-d] [-f] [-F] [-l] [-n] [-q] [--window=<n>] [--depth=<n>]
|
'git repack' [-a] [-A] [-d] [-f] [-F] [-l] [-n] [-q] [--window=<n>] [--depth=<n>]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-repo-config - Get and set repository or global options
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git repo-config' ...
|
'git repo-config' ...
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@ git-request-pull - Generates a summary of pending changes
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git request-pull' [-p] <start> <url> [<end>]
|
'git request-pull' [-p] <start> <url> [<end>]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-rerere - Reuse recorded resolution of conflicted merges
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git rerere' ['clear'|'forget' <pathspec>|'diff'|'status'|'gc']
|
'git rerere' ['clear'|'forget' <pathspec>|'diff'|'status'|'gc']
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-rev-parse - Pick out and massage parameters
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git rev-parse' [ --option ] <args>...
|
'git rev-parse' [ --option ] <args>...
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-revert - Revert some existing commits
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git revert' [--edit | --no-edit] [-n] [-m parent-number] [-s] <commit>...
|
'git revert' [--edit | --no-edit] [-n] [-m parent-number] [-s] <commit>...
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-rm - Remove files from the working tree and from the index
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git rm' [-f | --force] [-n] [-r] [--cached] [--ignore-unmatch] [--quiet] [--] <file>...
|
'git rm' [-f | --force] [-n] [-r] [--cached] [--ignore-unmatch] [--quiet] [--] <file>...
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-send-email - Send a collection of patches as emails
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git send-email' [options] <file|directory|rev-list options>...
|
'git send-email' [options] <file|directory|rev-list options>...
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ git-send-pack - Push objects over git protocol to another repository
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git send-pack' [--all] [--dry-run] [--force] [--receive-pack=<git-receive-pack>] [--verbose] [--thin] [<host>:]<directory> [<ref>...]
|
'git send-pack' [--all] [--dry-run] [--force] [--receive-pack=<git-receive-pack>] [--verbose] [--thin] [<host>:]<directory> [<ref>...]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-sh-i18n - Git's i18n setup code for shell scripts
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'. "$(git --exec-path)/git-sh-i18n"'
|
'. "$(git --exec-path)/git-sh-i18n"'
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-sh-setup - Common git shell script setup code
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'. "$(git --exec-path)/git-sh-setup"'
|
'. "$(git --exec-path)/git-sh-setup"'
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-shell - Restricted login shell for Git-only SSH access
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git shell' [-c <command> <argument>]
|
'git shell' [-c <command> <argument>]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -13,7 +13,6 @@ SYNOPSIS
|
|||||||
[--more=<n> | --list | --independent | --merge-base]
|
[--more=<n> | --list | --independent | --merge-base]
|
||||||
[--no-name | --sha1-name] [--topics]
|
[--no-name | --sha1-name] [--topics]
|
||||||
[(<rev> | <glob>)...]
|
[(<rev> | <glob>)...]
|
||||||
|
|
||||||
'git show-branch' (-g|--reflog)[=<n>[,<base>]] [--list] [<ref>]
|
'git show-branch' (-g|--reflog)[=<n>[,<base>]] [--list] [<ref>]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-show-index - Show packed archive index
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git show-index' < idx-file
|
'git show-index' < idx-file
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ git-show - Show various types of objects
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git show' [options] <object>...
|
'git show' [options] <object>...
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-status - Show the working tree status
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git status' [<options>...] [--] [<pathspec>...]
|
'git status' [<options>...] [--] [<pathspec>...]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-stripspace - Filter out empty lines
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git stripspace' [-s | --strip-comments] < <stream>
|
'git stripspace' [-s | --strip-comments] < <stream>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-svn - Bidirectional operation between a Subversion repository and git
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git svn' <command> [options] [arguments]
|
'git svn' <command> [options] [arguments]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-symbolic-ref - Read and modify symbolic refs
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git symbolic-ref' [-q] [-m <reason>] <name> [<ref>]
|
'git symbolic-ref' [-q] [-m <reason>] <name> [<ref>]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-tar-tree - Create a tar archive of the files in the named tree object
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git tar-tree' [--remote=<repo>] <tree-ish> [ <base> ]
|
'git tar-tree' [--remote=<repo>] <tree-ish> [ <base> ]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -9,6 +9,7 @@ git-unpack-file - Creates a temporary file with a blob's contents
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git unpack-file' <blob>
|
'git unpack-file' <blob>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-unpack-objects - Unpack objects from a packed archive
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git unpack-objects' [-n] [-q] [-r] [--strict] <pack-file
|
'git unpack-objects' [-n] [-q] [-r] [--strict] <pack-file
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@ git-update-ref - Update the object name stored in a ref safely
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git update-ref' [-m <reason>] (-d <ref> [<oldvalue>] | [--no-deref] <ref> <newvalue> [<oldvalue>])
|
'git update-ref' [-m <reason>] (-d <ref> [<oldvalue>] | [--no-deref] <ref> <newvalue> [<oldvalue>])
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-update-server-info - Update auxiliary info file to help dumb servers
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git update-server-info' [--force]
|
'git update-server-info' [--force]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-upload-archive - Send archive back to git-archive
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git upload-archive' <directory>
|
'git upload-archive' <directory>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-upload-pack - Send objects packed back to git-fetch-pack
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git-upload-pack' [--strict] [--timeout=<n>] <directory>
|
'git-upload-pack' [--strict] [--timeout=<n>] <directory>
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-var - Show a git logical variable
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git var' ( -l | <variable> )
|
'git var' ( -l | <variable> )
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-verify-pack - Validate packed git archive files
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git verify-pack' [-v|--verbose] [-s|--stat-only] [--] <pack>.idx ...
|
'git verify-pack' [-v|--verbose] [-s|--stat-only] [--] <pack>.idx ...
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@ git-verify-tag - Check the GPG signature of tags
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git verify-tag' <tag>...
|
'git verify-tag' <tag>...
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ git-web--browse - git helper script to launch a web browser
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git web{litdd}browse' [OPTIONS] URL/FILE ...
|
'git web{litdd}browse' [OPTIONS] URL/FILE ...
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-whatchanged - Show logs with difference each commit introduces
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git whatchanged' <option>...
|
'git whatchanged' <option>...
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -8,6 +8,7 @@ git-write-tree - Create a tree object from the current index
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git write-tree' [--missing-ok] [--prefix=<prefix>/]
|
'git write-tree' [--missing-ok] [--prefix=<prefix>/]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,7 +7,8 @@ gitcvs-migration - git for CVS users
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
git cvsimport *
|
[verse]
|
||||||
|
'git cvsimport' *
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
-----------
|
-----------
|
||||||
|
@ -7,6 +7,7 @@ gitdiffcore - Tweaking diff output
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git diff' *
|
'git diff' *
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ gitk - The git repository browser
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'gitk' [<option>...] [<revs>] [--] [<path>...]
|
'gitk' [<option>...] [<revs>] [--] [<path>...]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ gittutorial-2 - A tutorial introduction to git: part two
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
git *
|
git *
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ gittutorial - A tutorial introduction to git (for version 1.5.1 or newer)
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
git *
|
git *
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ gitworkflows - An overview of recommended workflows with git
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
git *
|
git *
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ git-convert-objects - Converts old-style git repository
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'git-convert-objects'
|
'git-convert-objects'
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ gitview - A GTK based repository browser for git
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
'gitview' [options] [args]
|
'gitview' [options] [args]
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -7,6 +7,7 @@ svn-fe - convert an SVN "dumpfile" to a fast-import stream
|
|||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
[verse]
|
||||||
svnadmin dump --incremental REPO | svn-fe [url] | git fast-import
|
svnadmin dump --incremental REPO | svn-fe [url] | git fast-import
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
Reference in New Issue
Block a user