Configuration

git config

Get and set configuration variables that control all facts of how Git looks and operates.

git config
  1. Set Name

 git config --global user.name "User name"
  1. Set Email

git config --global user.email "example@gmail.com"
  1. Set Editor

git config --global core.editor Vim
  1. Show Configuration

git config --list

Last updated