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.

Tags:

Comments...

  1. 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 :x

    lesser typing can save time :)

    By Prabir Shrestha2 Feb, 2010 @ 6:47 pm

  2. git add -A and git add . are not equivalent.

    git add . stages all modifications and untracked files; however, it does not stage any deletions. git add -A stages all modifications, untracked files, and deleted/renamed files.

    By James Gregory2 Feb, 2010 @ 10:51 pm

Post a comment...

Trackbacks...

  1. Pingback from James Gregory » Speaking engagements in 2010