Git installation and configuration on Linux | GitHub | Central/remote repository | Git | basic knowledges | ubuntu
#for ubuntu/Debian:
1. update packages:
- sudo apt update -y
- install git:
- sudo apt install git
- verify installation:
- git --version
#after installing git
configure your username and email (used in commits):
git config --global user.name "Your-Name"
git config --global user.email "your.email@example.com"
Verify the configuration:
- git config --global --list