我怎样才能找到手册页中提到的那些 git 文档('Everyday Git[1]' & 'Git User's Manual[2]')?

我怎样才能找到手册页中提到的那些 git 文档('Everyday Git[1]' & 'Git User's Manual[2]')?

git(1)手册页说:

See gittutorial(7) to get started, then see Everyday Git[1]
for a useful minimum set of commands. The Git User’s Manual[2] 
has a more in-depth introduction.

“Everyday Git[1]”或“Git User's Manual[2]”在哪里?

答案1

这些链接可以在手册页的最后找到:

    1. Git User’s Manual
       file:///usr/local/share/doc/git/user-manual.html

    2. Git concepts chapter of the user-manual
       file:///usr/local/share/doc/git/user-manual.html#git-concepts

    3. howto
       file:///usr/local/share/doc/git/howto-index.html

    4. Git API documentation
       file:///usr/local/share/doc/git/technical/api-index.html

    5. [email protected]
       mailto:[email protected]

[number]符号通常意味着它引用了某个文档,并且在(页面,文档,...)的末尾您可以找到这些文档的位置。我鼓励你在问问题之前多看看周围;)

相关内容