Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Last active February 25, 2020 05:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxbiekaisar/cc3b02f953323af49f92bde4a0559fc7 to your computer and use it in GitHub Desktop.
Save linuxbiekaisar/cc3b02f953323af49f92bde4a0559fc7 to your computer and use it in GitHub Desktop.
Git Installation on Ubuntu
#!/bin/sh
# Youtube link: https://www.youtube.com/watch?v=rKJLQJ2FgDI
# Run the following command to install Git on Ubuntu 18.04 LTS
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
sudo git config --global user.name "linuxbiekaisar"
sudo git config --global user.email linuxbiekaisar@gmail.com
git --version
git config --list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment