Where are the git online pages?

Possible duplicate:
What is the best place to search for Git help content online, but kernel.org not?

Since https://www.kernel.org/ was disabled last month, the Git manual pages are no longer available on this site. These are man pages that have been converted to HTML for easy browsing.

Where is the equivalent place to search these manual pages? There are still millions of links pointing to old pages on kernel.org.

+4
source share
3 answers

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

An official and comprehensive reference guide comes as part of the Git package itself.

+5
source
Scott Chacon installed a mirror on github until kernel.org was fully restored: http://schacon.github.com/git/git.html
+1
source
linux.die.net/man/1/ 

seems to be at least basic. Just add the git command. For instance. linux.die.net/man/1/git-pull

Google also seems to find this if I search for [man git-pull].

Finally, if you have a full git installation, you can do git help -w command to get the HTML documentation. For instance.

 git help -w pull 
0
source

All Articles