The page you requested does not exist. A search for diving git resulted in this page.

Diving into Git

In our trend of git articles... Diving into Git is a good writeup by a "new to git" user who is jumping into the deep end.

John Wiegley has some great notes on "real world" git usage, including a section on combining a couple of repositories... a task that I have been trying to find a solution for. He takes an old cvs repository and imports it, then takes a newer svn repository of the same code and imports it into a different archive. At the end he combines the two into one git repository with all of the history of both previous storage solutions.

There was apparently one mistake in the commands for this - as near as I can tell you have to specify this line as:

$ git log svn/master | tail -10

instead of

$ git log | tail -10

Anyway, I learned enough from this page to figure it out :-)

Thanks John!