Try Tuts+ Premium, Get Cash Back!
A Visual Introduction to Git: Premium Screencast
plusvideos

A Visual Introduction to Git: Premium Screencast

Download Source Files

Many of you might be aware that Nettuts+ recently launched the book, “Getting Good with Git.” However, sometimes, when it comes to scary code and the command line, a visual guide proves to be more helpful for some (including me). If you fall into this camp, we’ve asked the author, Andrew Burgess, to also prepare a screencast, exclusively for our Premium members on the subject! Gain access to this screencast series, as well as many others by becoming a Premium member.

And, everyone: don’t forget to download “Getting Good with Git” for free…but only for the rest of October!

A Visual Introduction to Git

Join Net Premium

NETTUTS+ Screencasts and Bonus Tutorials

For those unfamiliar, the family of Tuts+ sites runs a premium membership service. For $19 per month, you gain access to exclusive premium tutorials, screencasts, and freebies from Nettuts+, Psdtuts+, Aetuts+, Audiotuts+, Vectortuts+, and CgTuts+ For the price of a pizza, you’ll learn from some of the best minds in the business. Become a Premium member to read this tutorial, as well as hundreds of other advanced tutorials and screencasts.

Note: Want to add some source code? Type <pre><code> before it and </code></pre> after it. Find out more
  • Sahan

    Thanks Andrew

  • http://www.emersonlackey.com Emerson

    Nice cast, I love GIT, but it can be tough to learn.

    Anyway, I wanted to ask about your background image? That wood is sharp… any chance you could let us know where to grab that?

  • http://www.how-to-asp.net Ryan

    Great stuff! Thanks Andrew

  • Peter

    Looks great, gonna watch this later today.

  • http://ericmontzka.com Eric

    What I’ve watched so far is great, but I got stuck: after git commit, you type the comment and say “close the editor”. How? I only know as much command line as I learned in your ebook, so I’m trying to figure it out-wish you were more specific. Thanks.

    • Ryan

      Eric,

      The text editor used in most UNIX based command line tools is called VI, or VIM (VI improved). There are endless tutorials and resources available to help you learn it. To exit VIM, Andrew just typed ‘:wq’, that’s colon – w – q. The ‘w’ is to Write the file, and the ‘q’ is to quit the editor.