documentação do cygwin git

1

Acabei de instalar o git usando o cygwin. Em seguida, tentei usar git help status , mas recebi o erro fatal: '/usr/share/doc/git-doc': not a documentation directory. E, de fato, não há pasta git-doc em /usr/share .

O que preciso fazer para obter a documentação? A instalação deu errado, esqueci de instalar um pacote?

Obrigado

    
por Car981 27.03.2013 / 19:43

2 respostas

2

O pacote Cygwin git está sem a documentação HTML. Provavelmente, isso ocorreu devido a uma disparidade no sistema de compilação upstream: enquanto make doc cria as páginas man e HTML, make install-doc apenas instala as páginas man; um make install-html separado é necessário. Vou tentar consertar isso na distribuição do Cygwin.

    
por 28.05.2013 / 00:56
1

De acordo com o git wiki , você deve fazer isso:

Getting and installing documentation

You can find all the plain text documentation in the Git source tree's Documentation/ directory.

In order to build the HTML version of the documentation you need to have AsciiDoc version 7.0 or greater installed. Man pages also require that xmlto is installed.

To build and install documentation from the Git source code simply run:

$ make install-doc
    
por 27.03.2013 / 19:49