Created
August 17, 2020 04:53
-
-
Save zenius/6bff44b5fef4c1a57b3f496d64f99f00 to your computer and use it in GitHub Desktop.
installation and removal guide of git in debian 10
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
Steps: | |
1. update the apt package | |
sudo apt update | |
2. install the git package | |
sudo apt install git | |
3. Check if it is properly installed, | |
git --version | |
output: | |
git version <you will get your git version here> | |
4. To remove the installed git package | |
sudo apt remove git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment