Git
From Indie IT Wiki
Introduction
Git is an open source version control system, which is linked to the web site github.com for sharing code content.
Installation
sudo apt-get install git
Configuration
Set your user name...
git config --global user.name "jbloggs"
Set your email address...
git config --global user.email "email@example.com"
Commands
Create a repository...