From 35599766e0d2df09e15cc8a63a5ee9a6ffc6a656 Mon Sep 17 00:00:00 2001 From: Irene Cabezas Date: Wed, 15 May 2024 15:59:48 +0200 Subject: [PATCH 1/6] Actualizar README con enlaces de interes --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 738e0c9..d3f0677 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,12 @@ Usaremos este repositorio para practicar todo tipo de commandos en git y como us Esperemos que os lo paseis bien! Fefy + + +### Enlaces de interes + +* [Juego para aprender Git](https://learngitbranching.js.org/?locale=es_ES) +* [GitHub ‘cheat sheet’](https://github.github.com/training-kit/downloads/es_ES/github-git-cheat-sheet/) +* [Tutorial de Git en terminal](https://tutorials-codebar-io.translate.goog/version-control/command-line/tutorial.html?_x_tr_sch=http&_x_tr_sl=auto&_x_tr_tl=es&_x_tr_hl=en&_x_tr_pto=wapp) +* [Consejos para solucionar errores frecuentes de Git](https://ohshitgit.com/es) +* [Mensajes de commit profesionales](http://tomasdelvechio.github.io/old/440/) From 9e33becfa66e2d7adff8c97b44c684ea7c7636a3 Mon Sep 17 00:00:00 2001 From: Irene Cabezas Date: Wed, 15 May 2024 16:00:13 +0200 Subject: [PATCH 2/6] Limpiar archivos para nuevo workshop --- stephCespedes.txt | 1 - students.txt | 38 -------------------------------------- 2 files changed, 39 deletions(-) delete mode 100644 stephCespedes.txt diff --git a/stephCespedes.txt b/stephCespedes.txt deleted file mode 100644 index 0ab4b11..0000000 --- a/stephCespedes.txt +++ /dev/null @@ -1 +0,0 @@ -git commit \ No newline at end of file diff --git a/students.txt b/students.txt index f3e8706..e69de29 100644 --- a/students.txt +++ b/students.txt @@ -1,38 +0,0 @@ - -Débora Menezes - Freyja -Melissa Casola! Jem y She-Ra -Carolina D S -Thamy - - - - -Débora Menezes -Carolina D S -Thamy -Stephanie Céspedes - - -Débora Menezes -Carolina D S -Thamy -Stephanie Céspedes -Fefi -Melissa Casola! -gabriela irimia (gabriela ) - -Zohra -<<<<<<< HEAD -Grecia Landazuri -======= - - -Débora Menezes (soy imborrable :D) -Stephanie Céspedes - -Grecia Landazuri -Alicia Ontiveros - - -jesus ->>>>>>> 57b4e17db985a3e108d3e51b56ab7991a1144d70 From 348d8c96137cb0317bb07b75a4710a7efd105b2a Mon Sep 17 00:00:00 2001 From: Irene Cabezas Date: Wed, 15 May 2024 16:24:18 +0200 Subject: [PATCH 3/6] Anyadir comandos de interes --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index d3f0677..b63fe59 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,15 @@ Esperemos que os lo paseis bien! Fefy +### Comandos +* Clonar Repositorio: ```git clone ``` +* Crear Rama: ```git checkout -b ``` +* Añadir Cambios: ```git add ``` +* Commit Cambios: ```git commit -m "commit message"``` +* Push Rama: ```git push origin ``` +* Pull Cambios: ```git pull origin main``` +* Resolver Conflictos: Edit manualmente, despues ```git add```, ```git commit``` + ### Enlaces de interes From 21e988b92f9e0c40daf1d78127708733a8277cf6 Mon Sep 17 00:00:00 2001 From: Irene Cabezas Date: Wed, 15 May 2024 16:32:19 +0200 Subject: [PATCH 4/6] Elimiar archivo txt y crear htmls --- grupoA.html | 14 ++++++++++++++ grupoB.html | 14 ++++++++++++++ students.txt | 0 3 files changed, 28 insertions(+) create mode 100644 grupoA.html create mode 100644 grupoB.html delete mode 100644 students.txt diff --git a/grupoA.html b/grupoA.html new file mode 100644 index 0000000..82c5084 --- /dev/null +++ b/grupoA.html @@ -0,0 +1,14 @@ + + + + + Git Ejercicio Collaborativo + + +

Git Ejercicio Collaborativo

+

Nombre y animal favorito

+
    +
  • Irene - Panda rojo
  • +
+ + diff --git a/grupoB.html b/grupoB.html new file mode 100644 index 0000000..f2ff9ef --- /dev/null +++ b/grupoB.html @@ -0,0 +1,14 @@ + + + + + Git Ejercicio Collaborativo + + +

Git Ejercicio Collaborativo

+

Nombre y animal favorito

+
    +
  • Pedro - Panda rojo
  • +
+ + diff --git a/students.txt b/students.txt deleted file mode 100644 index e69de29..0000000 From 8829d89a6679378bb26dbf0548558c7d3c140aa3 Mon Sep 17 00:00:00 2001 From: Pedro Garrido Date: Thu, 16 May 2024 12:19:23 +0200 Subject: [PATCH 5/6] Add useful git commands --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b63fe59..30b5a28 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,26 @@ ## Git Practice Usaremos este repositorio para practicar todo tipo de commandos en git y como usarlos para resolver ciertos errores. -Esperemos que os lo paseis bien! +Esperemos que os lo paséis bien! Fefy ### Comandos * Clonar Repositorio: ```git clone ``` * Crear Rama: ```git checkout -b ``` +* Moverse a otra Rama: ```git checkout | git switch ``` * Añadir Cambios: ```git add ``` * Commit Cambios: ```git commit -m "commit message"``` * Push Rama: ```git push origin ``` * Pull Cambios: ```git pull origin main``` -* Resolver Conflictos: Edit manualmente, despues ```git add```, ```git commit``` +* Resolver Conflictos: Edit manualmente, después ```git add```, ```git commit``` +* Hacer Merge, ejemplo merge rama test a main: + * Asegúrate de estar en la rama a la que quieras hacer el merge ```git switch main``` + * Pull the los últimos cambios de esa rama ```git pull origin main``` + * Merge ```git merge test``` -### Enlaces de interes +### Enlaces de interés * [Juego para aprender Git](https://learngitbranching.js.org/?locale=es_ES) * [GitHub ‘cheat sheet’](https://github.github.com/training-kit/downloads/es_ES/github-git-cheat-sheet/) From 1354a0e833191392a2c3de1aaa4b515473f351b7 Mon Sep 17 00:00:00 2001 From: Adrianaortiz00 Date: Thu, 16 May 2024 16:08:10 +0200 Subject: [PATCH 6/6] Nombre-animalfav --- grupoB.html | 1 + 1 file changed, 1 insertion(+) diff --git a/grupoB.html b/grupoB.html index f2ff9ef..c87c5fd 100644 --- a/grupoB.html +++ b/grupoB.html @@ -9,6 +9,7 @@

Git Ejercicio Collaborativo

Nombre y animal favorito

  • Pedro - Panda rojo
  • +
  • Adriana - Gato