Difference between revisions of "Git"

From Indie IT Wiki
imported>Plittlefield
 
(No difference)

Latest revision as of 21:05, 17 June 2019

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