Skip to content

Instantly share code, notes, and snippets.

@felipecabargas
Created October 3, 2015 17:05
Show Gist options
  • Save felipecabargas/4aa112536d7f80d7b226 to your computer and use it in GitHub Desktop.
Save felipecabargas/4aa112536d7f80d7b226 to your computer and use it in GitHub Desktop.
SFD Git installation guide

#Git Setup Guide

by Alfonso Cabargas Madrid | [email protected]

##INSTALACIÓN --join-the-dark-side-we-have-cookies

###OS X

Descarga
  1. Descarga el instalable de git en git-scm.com/download/mac
  2. Corre el archivo .pkg
Homebrew
$ brew install git

--- ###Linux
Debian/Ubuntu
$ apt-get install git
Fedora
$ yum install git
Gentoo
$ emerge --ask --verbose dev-vcs/git
Arch Linux
$ pacman -S git
openSUSE
$ zypper install git
FreeBSD
$ cd /usr/ports/devel/git
$ make install
Solaris 11 Express
$ pkg install developer/versioning/git
OpenBSD
$ 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]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment