Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LinuxDevOpsGirl/11bac8781ce8e83d0c28e93d21daa325 to your computer and use it in GitHub Desktop.
Save LinuxDevOpsGirl/11bac8781ce8e83d0c28e93d21daa325 to your computer and use it in GitHub Desktop.
Install and Configure Git Ubuntu
# 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