#Git Setup Guide
by Alfonso Cabargas Madrid | [email protected]
##INSTALACIÓN --join-the-dark-side-we-have-cookies
###OS X
- Descarga el instalable de git en git-scm.com/download/mac
- Corre el archivo
.pkg
$ brew install git
--- ###Linux
$ apt-get install git
$ yum install git
$ emerge --ask --verbose dev-vcs/git
$ pacman -S git
$ zypper install git
$ cd /usr/ports/devel/git
$ make install
$ pkg install developer/versioning/git
$ pkg_add git
--- ###Windows
Descarga el instalable desde git-scm.com/download/win y ejecuta el archivo .exe
##CONFIGURACIÓN `--shut-up-and-commit`
Dile a `git` con que nombre identificar tus commits (esto setea la etiqueta author de los archivos `Diff`:
$ git config --global user.name "Someone Realname"
Dile a `git` que dirección de correo electrónico asociar a tus commits.
$ git config --global user.email "[email protected]"