En Windows Abrimos Git Bash
1. Averiguamos la version
2. Configuramos el nombre
3. Configuramos nuestro correo
4. Abrimos Nuestro archivo de configuracion en Visual Studio Code
$ git --version
git version 2.38.1.windows.1
NEWTWO@NEWTWOPC MINGW64 ~
$ git config --global user.name user.name "Roberth Bardales"
NEWTWO@NEWTWOPC MINGW64 ~
$ git config --global user.email roberthbardales@hotmail.com
NEWTWO@NEWTWOPC MINGW64 ~
$ git config --global core.editor "code --wait"
NEWTWO@NEWTWOPC MINGW64 ~
$ git config --global -e
hint: Waiting for your editor to close the file...

Última modificación: 18 Feb 2024 20:43
ghg