Skip to content

Instantly share code, notes, and snippets.

@CloudLinuxDeveloper
Last active March 12, 2020 16:13
Show Gist options
  • Save CloudLinuxDeveloper/e382e085b8441e9893f180c2ab1a7941 to your computer and use it in GitHub Desktop.
Save CloudLinuxDeveloper/e382e085b8441e9893f180c2ab1a7941 to your computer and use it in GitHub Desktop.
Git Install Ubuntu 18.04 LTS
#!/bin/sh
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
sudo git config --global user.name "YourName"
sudo git config --global user.email youremail@gmail.com
git --version
git config --list
# YouTube: https://youtu.be/V6cBwl5oGYg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment