Como ler a página man do git revert?

1

Quando eu faço um man git revert , eu pego a página man do git:

NAME
       git - the stupid content tracker

SYNOPSIS
       git [--version] [--help] [-C <path>] [-c <name>=<value>]
           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p|--paginate|--no-pager] [--no-replace-objects] [--bare]
           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
           <command> [<args>]

DESCRIPTION
       Git is a fast, scalable, distributed revision control system with an
       unusually rich command set that provides both high-level operations and
       full access to internals.
...

revert é o <command> listado acima. Quando tento apenas man revert , obtenho:

$ man revert
No manual entry for revert

Como posso ler a página man do git revert ?

    
por jww 08.07.2015 / 02:24

2 respostas

2

O Git possui seu próprio sistema de ajuda, chamado via git help <command> , conforme as notas de uso:

'git help -a' and 'git help -g' lists available subcommands and some
concept guides. See 'git help <command>' or 'git help <concept>'
to read about a specific subcommand or concept.

Então, para obter informações sobre git revert usage

$ git help revert
GIT-REVERT(1)                                  Git Manual                                 GIT-REVERT(1)

NAME
     git-revert - Revert some existing commits

Você também pode estar interessado na documentação do git scm , que eu achei muito útil ao lidar com git ; e ainda se referem a.

    
por 08.07.2015 / 02:29
0

Isso é engraçado; quando digo man git revert , exibe git-revert(1) . Mas mesmo assim, Se você rolar para baixo cerca de 20% do caminho em git(1) , verá

Git Commands

                ⋮

seguido por

git-revert(1)

    Revert an existing commit.

Então é assim que você aprende a dizer man git-revert .

    
por 15.07.2015 / 19:32

Tags