Skip to content

Commit

Permalink
agregado tutorial configurar GIT
Browse files Browse the repository at this point in the history
  • Loading branch information
mfortino committed Sep 19, 2014
1 parent ba40779 commit 3423c52
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tutorial_configurar_GIT_linux.md
@@ -0,0 +1,23 @@
# Tutorial configurar GIT en Linux Ubuntu

## En este tutorial configuramos GIT en Linux Ubuntu.

1. Primero abrimos un terminal y habilitamos los colores para GIT:
> `usuario@usuario-portatil:~$ git config --global color.ui true`
2. Ahora configuramos nuestro nombre de usuario:
> `usuario@usuario-portatil:~$ git config --global user.name "usuario"`
3. Configuramos nuestra dirección de e-mail:
> `usuario@usuario-portatil:~$ git config --global user.email "usuario@email.com"`
4. Creamos una llave SSH:
> `usuario@usuario-portatil:~$ ssh-keygen -t rsa -C "usuario@email.com"`
5. Copiamos la clave SSH en nuestra cuenta en GIT https://github.com/settings/ssh:
> `usuario@usuario-portatil:~$ cat ~/.ssh/id_rsa.pub`
6. Controlamos si esta correcta:
> `usuario@usuario-portatil:~$ ssh -T git@github.com`
7. Recibiremos un mensaje diciendo que autenticamos nuestra cuenta pero que GIT no provee acceso shell.

0 comments on commit 3423c52

Please sign in to comment.