Last active
May 30, 2021 16:37
-
-
Save LinuxPlaner/ba6bef029a6147d8b72acf8aaa44c80f to your computer and use it in GitHub Desktop.
Git Installation And Configuration
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
Ping Me For Git related service: | |
SMS: +8801610932753 | |
IMO: +8801610932753 | |
BiP: +8801610932753 | |
Viber: +8801610932753 | |
Signal: +8801610932753 | |
Discord: supanta saha#3868 | |
Telegram: https://t.me/LinuxPlaner | |
WhatsApp: https://wa.link/njuw4c | |
Skype: https://join.skype.com/weW8UDI0u7o5 | |
Email: [email protected] | |
#!/bin/bash | |
# Part 1 | |
# To Install latest Git using PPA run this command: | |
sudo add-apt-repository ppa:git-core/ppa | |
sudo apt update | |
sudo apt install git | |
# To check Git version run this command: | |
git --version | |
# To Configure Git run this command: | |
sudo git config --global user.name "TypeYourName" | |
sudo git config --global user.email "TypeYourEmail" | |
# To check Git configuration settings run this command: | |
git config --list |
Author
LinuxPlaner
commented
May 30, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment