Question

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.

Was it helpful?

Solution

http://schacon.github.com/git/git.html

The official and comprehensive reference manual comes as part of the Git package itself

OTHER TIPS

Scott Chacon has set up a mirror on github until kernel.org is restored completely: http://schacon.github.com/git/git.html

linux.die.net/man/1/ 

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.

git help -w pull
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top