Skip to content

Instantly share code, notes, and snippets.

@arielivandiaz
Created December 19, 2018 16:49
Show Gist options
  • Save arielivandiaz/b1d114e44aaa9086d21995ce2fcd3268 to your computer and use it in GitHub Desktop.
Save arielivandiaz/b1d114e44aaa9086d21995ce2fcd3268 to your computer and use it in GitHub Desktop.
Guia rapida de como usar git bash
#Clonar un repositorio
git clone https://github.com/arielivandiaz/teaching-git-starter-pack.git
#Entrar en la carpeta del repositorio
cd teaching-git-starter-pack
#Modificamos el repositorio
### /*/*/*/*/
#Checkeamos los archivos modificados
git status
#Agregamos los cambios
git add -A
#Creamos un commit con titulo "Probando git bash"
git commit -m 'Probando git bash'
# Opcional: Actualizar el repo (pull)
git pull origin master
#Enviamos los cambios al repositorio remoto
git push origin master
@marcospo12
Copy link

ls -al ~/.ssh

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