Configuration
git config
Get and set configuration variables that control all facts of how Git looks and operates.
git config
Set Name
git config --global user.name "User name"
Set Email
git config --global user.email "example@gmail.com"
Set Editor
git config --global core.editor Vim
Show Configuration
git config --list
Last updated