Skip to content

Instantly share code, notes, and snippets.

@multidis
Created October 5, 2013 23:02
Show Gist options
  • Save multidis/6847097 to your computer and use it in GitHub Desktop.
Save multidis/6847097 to your computer and use it in GitHub Desktop.
git setup on Ubuntu, configuration file
sudo apt-get install git
git config --global user.name "Name Here"
git config --global user.email "email@domain.com"
## to view/edit git configuration data:
git config -e --global
## OR: just edit /home/<user>/.gitconfig
[user]
name = Name Here
email = email@domain.com
[core]
editor = gedit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment