Git installation and configuration on Linux | GitHub | Central/remote repository | Git | basic knowledges | ubuntu

Git installation and configuration on Linux | GitHub | Central/remote repository | Git | basic knowledges | ubuntu

#for ubuntu/Debian:

1. update packages:

  • sudo apt update -y
  1. install git:
  • sudo apt install git
  1. verify installation:
  • git --version

#after installing git

configure your username and email (used in commits):

Verify the configuration:

  • git config --global --list