configuración de la lista de git
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 [email protected]
git config --global user.name "John Doe"
git config --global user.email [email protected]
$ 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