Skip to content

Instantly share code, notes, and snippets.

@LinuxPlaner
Last active May 30, 2021 16:37
Show Gist options
  • Save LinuxPlaner/ba6bef029a6147d8b72acf8aaa44c80f to your computer and use it in GitHub Desktop.
Save LinuxPlaner/ba6bef029a6147d8b72acf8aaa44c80f to your computer and use it in GitHub Desktop.
Git Installation And Configuration
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
@LinuxPlaner
Copy link
Author

Screenshot from 2021-05-30 22-34-37

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment