Git

From Indie IT Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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...