๐ฟ Installation ๐ง Install on Linux 1 2 3sudo apt update sudo apt install git git --version ๐ง Install on Windows Install Git for Windows Enable โGit from the command line and also from 3rd-party softwareโ ๐ง Install on macOS 1 2brew install git git --version ๐ง Global Config 1 2 3git config --global user.name "Your Name" git config --global user.email "you@example.com" git config --global core.editor "code --wait"