git list config
git config --list
# or
git config --global --list
garzj
git config --list
# or
git config --global --list
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
$ git config --list --show-origin
git config --global --edit
# Set Emacs as the default editor
$ git config --global core.editor emacs
# Set Visual Studio Code as the default editor
$ git config --global core.editor code