Git er meget konfigurerbar via git config — indstilling af din identitet, editor, standardadfærd og aliases (genveje til kommandoer). At konfigurere Git godt og bruge aliases forbedrer dit workflow og produktivitet.
Væsentlig konfiguration
git config --global user.name
git config --global user.email
git config --global core.editor
git config --global init.defaultBranch main
git config --global pull.rebase
git config --global core.autocrlf input
