Recently I started using Git) again so I could play with Kohana v3 (it has a tutorial about Working with Git). Here are some really neat resources which I'm pretty sure are already popular (just wanted to repost them like what everybody does):

The first two pages provide even more useful links. If you use SVN then you might find this link useful.

I am only familiar with two web hosting service that uses Git namely:

  • Codaset (which just recently launched); and
  • Github (which I believe is the popular one)

I am currently using Codaset for trying out Git.

A common and quick step-by-step guide for Git follows:

  1. git init
  2. touch README.
  3. git add README.md
  4. git commit -m "Added readme file..."
  5. git remote add origin <url>
  6. git push origin master

git++! Cheers! :bigsmile: