Git 在线手册页在哪里?
自从 https://www.kernel.org/ 上个月离线,该网站上不再提供 Git 手册页。这些手册页呈现为 HTML,以便于浏览器查看。
现在在哪里可以找到这些手册页?仍然有无数的链接指向 kernel.org 上的旧页面。
Possible Duplicate:
What's the best place to find Git reference content online while kernel.org is down?
Since https://www.kernel.org/ was offline last month, the Git manual pages are no longer available on that site. These were the man pages rendered into HTML for easy browser viewing.
Where is an equivalent place to find those man pages now? There are still zillions of links pointing to the old pages on kernel.org.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
http://schacon.github.com/git/git.html
http://schacon.github.com/git/git.html
Scott Chacon 在 github 上建立了一个镜像,直到 kernel.org 完全恢复:http://schacon。 github.com/git/git.html
Scott Chacon has set up a mirror on github until kernel.org is restored completely: http://schacon.github.com/git/git.html
似乎至少有主要的。只需附加 git 命令即可。例如 linux.die.net/man/1/git-pull
Google 似乎也如果我搜索 [man git-pull] 就能找到这个。
最后,如果您安装了完整的 git,则可以执行 git help -w 命令来获取 HTML 文档。例如
seems to have at least the major ones. Just append git-command. E.g. linux.die.net/man/1/git-pull
Google also seems to find this if I search [man git-pull].
Finally, if you have a full git installation, you can do
git help -w command
to get the HTML documentation. E.g.