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):
- External Links of Git in Wikipedia#External_links)
- Github Help
- #git in Freenode
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:
I am currently using Codaset for trying out Git.
A common and quick step-by-step guide for Git follows:
- git init
- touch README.
- git add README.md
- git commit -m "Added readme file..."
- git remote add origin <url>
- git push origin master
git++! Cheers! :bigsmile: