Configuring Git

git config lets you set configuration variables that control how Git looks and operates on your machine. git config –global user.name “Bolaji Ayodeji”

git config –global user.email [email protected]

git config –global core.editor emacs

git config –global init.defaultBranch main

Scroll to Top