Git

From Indie IT Wiki
Revision as of 21:05, 17 June 2019 by imported>Plittlefield (→‎Introduction)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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