Drupal project is moving it's repo to git. Git has the best version control and workflow for big communities and developers. Git is to be embraced by the Drupal community and taken to the core of things. I already moved all code from our repos into git also. Wanting for acceptance from the developers... Code for geting a clone of the repo:
git clone git://git.drupalcode.org/projects/examples
Here is the exercise:
http://randyfay.com/node/72
Learn to use git! Get logs:
git log
Get status:
git status
Add a file:
git add .
Commit:
git commit -m "test" file.txt
Revert:
git reset --hard HEAD^
New branch:
git