A Crash Course in Git and the UNIX Command Line

Installation

Download and install git. Mac and Windows users should download the installer from http://git-scm.com/. Linux users should install through their distribution’s package management system.

Getting Started

Open up your terminal.

Command Line Basics

Setting up git:

git config --global user.name "Your Name Here"
git config --global user.email "Your Email Here"

Git Basics

Branching

Learning More