How to install Git and configure on Linux | GitHub | basic knowledges.๐
#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 "Yo...
biren.hashnode.dev1 min read