Created
October 5, 2013 23:02
-
-
Save multidis/6847097 to your computer and use it in GitHub Desktop.
git setup on Ubuntu, configuration file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install git | |
git config --global user.name "Name Here" | |
git config --global user.email "[email protected]" | |
## to view/edit git configuration data: | |
git config -e --global | |
## OR: just edit /home/<user>/.gitconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = Name Here | |
email = [email protected] | |
[core] | |
editor = gedit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment