Skip to content

Instantly share code, notes, and snippets.

@afahitech
Created December 8, 2019 16:49
Show Gist options
  • Select an option

  • Save afahitech/55427565bd72be9ce9e09c65da605d32 to your computer and use it in GitHub Desktop.

Select an option

Save afahitech/55427565bd72be9ce9e09c65da605d32 to your computer and use it in GitHub Desktop.
Git Install Linux
# To install Latest Git
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
git --version
# To configure Git
sudo git config --global user.name "YourName"
sudo git config --global user.email youremail@gmail.com
git config --list
# Youtibe: https://youtu.be/kUyC4J9zPms
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment