-
Notifications
You must be signed in to change notification settings - Fork 0
Home
sorul edited this page Apr 5, 2017
·
5 revisions
Aquí dejo los comandos de git que usaremos:
git clone https://github.com/fmramila/TADGroup7.git
2.1 Crear rama
git checkout -b nombreRamaNueva
2.2 Saber en qué rama estoy
git branch
2.3 Borrar rama con todo su contenido
git branch -D nombreRama
2.1 Añadir los nuevos archivos a tu repositorio local
git add .
2.2 Guardar todos los cambios en tu repositorio local
git commit -m"comentario" .
2.3 Subir los cambios al repositorio de Github global
git push origin nombreRama