Last monday (8th of Feb) I did an E-VAN on Git; an introductory talk on Git and DVCS, covering pretty much everything you need to know for day-to-day Git life. I think it went down well, certainly didn’t hear anyone complaining.
The talk was recorded, so if you haven’t already seen it then you can do so at your own leisure.
The video is up on the E-VAN’s Vimeo account, specifically here.
Trackbacks...
- Pingback from James Gregory » Speaking engagements in 2010

Comments...
great videos for git beginners.
but there are some commands that you can still improve
instead of doing
git add -A
you could do
git add .
in vim instead of saving and exiting :wq you could also do
lesser typing can save time
By Prabir Shrestha — 2 Feb, 2010 @ 6:47 pm
git add -Aandgit add .are not equivalent.git add .stages all modifications and untracked files; however, it does not stage any deletions.git add -Astages all modifications, untracked files, and deleted/renamed files.By James Gregory — 2 Feb, 2010 @ 10:51 pm
Post a comment...