Skip to content

Instantly share code, notes, and snippets.

@lozadaOmr
Last active August 29, 2015 14:01
Show Gist options
  • Save lozadaOmr/9d38862bb15816c7c325 to your computer and use it in GitHub Desktop.
Save lozadaOmr/9d38862bb15816c7c325 to your computer and use it in GitHub Desktop.
Installing and configuration of GIT

install git

sudo apt-get install git

set username

git config --global user.name "[username]"

example

git config --global user.name "martney"

set email

git config --global user.email "[email]"

example

git config --global user.email "martneygp@yahoo.com"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment