Skip to content

Instantly share code, notes, and snippets.

@jansanchez
Last active January 4, 2016 00:29
Show Gist options
  • Save jansanchez/8542403 to your computer and use it in GitHub Desktop.
Save jansanchez/8542403 to your computer and use it in GitHub Desktop.
Git basics

Git basics

Generando nuestra clave ssh

ssh-keygen -t rsa -C "[email protected]"

Registrando el email de mi usuario git

git config --global user.email "[email protected]"

Registrando el nombre de mi usuario git

git config --global user.name "user name"

Enjoy!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment