Created
June 22, 2022 15:14
-
-
Save tgmarinho/458d2ed5683450ccae899f8ad63f8ca7 to your computer and use it in GitHub Desktop.
how to install git on ubuntu
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
| Execute all commands bellow one by one: | |
| sudo apt update | |
| sudo apt install git | |
| git --version | |
| git config --global user.name "Your Name" | |
| git config --global user.email "[email protected]" | |
| git config --list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment