Created
January 12, 2020 12:08
-
-
Save LinuxDevOpsGirl/11bac8781ce8e83d0c28e93d21daa325 to your computer and use it in GitHub Desktop.
Install and Configure Git Ubuntu
This file contains hidden or 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
# For install and configure git Ubuntu run this commands one by one: | |
sudo add-apt-repository ppa:git-core/ppa | |
sudo apt update | |
sudo apt install git | |
sudo git config --global user.name "urmi" | |
sudo git config --global user.email [email protected] | |
git --version | |
git config --list | |
#YouTube: https://youtu.be/_otn6Zv0mfM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment