Otras Páginas

Expandir Todo

Configura Git

(Si utilizaste el Instalador de Rails en Windows ya deberías tener user.name y user.email configurados.)

Type this in the terminal:
git config --global user.name "Tu nombre"
git config --global user.email "Tu email"

Utiliza el mismo email para Heroku, Git, GitHub, y SSH.

Verificar

Type this in the terminal:
git config --get user.name
Expected result:
Tu nombre
Type this in the terminal:
git config --get user.email
Expected result:
Tu email

Texto de salida de Git en colores

Type this in the terminal:
git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto

Si estas utilizando Windows, la salida de Git no tendrá colores.

Siguiente Paso:

Regresar a Linux