Created
December 8, 2019 16:49
-
-
Save afahitech/55427565bd72be9ce9e09c65da605d32 to your computer and use it in GitHub Desktop.
Git Install Linux
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
| # 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