tags:

views:

298

answers:

4

Is there an introduction to the world of git that has a similar style and structure as Hg Init?

+4  A: 

Some of my favorite links.

gitready.com (maybe what you are looking for)
git.wiki.kernel.org
gitmagic

Very useful in the beginning:

cheatsheet (PDF)

tanascius
+4  A: 

Short answer: none known.

Perhaps http://progit.org/book/ is good enough? Perhaps even more readable than hginit, but progit is also lacking the richer illustrations of hginit.

(Also, a slightly brighter variation (and very incomplete), on the gitready theme is at http://learn.github.com/ )

Simon B.
+1  A: 

It's not like hginit, but for me Git Internals is the best book on Git I've ever read

pablo
+1  A: 

The official Git Tutorial

Yes, it's formatted like a man page, but it's a tutorial that will you get up and running pretty quickly.

hasen j