brew install git
sudo apt update
sudo apt install git
git config --global user.name "Adınız Soyadınız"
git config --global user.email "eposta@example.com"
git config --global core.editor "code --wait"
git config --global init.defaultBranch main
git config --list
Her ayarı tek tek --global veya --local ile yeniden tanımlayabilirsin:
git config --global user.email "yeni@example.com"