Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
## 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 <repository-url>```
* Crear Rama: ```git checkout -b <branch-name>```
* Moverse a otra Rama: ```git checkout <branch-name> | git switch <branch-name>```
* Añadir Cambios: ```git add <file-name>```
* Commit Cambios: ```git commit -m "commit message"```
* Push Rama: ```git push origin <branch-name>```
* Pull Cambios: ```git pull origin main```
* 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 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/)
* [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/)
14 changes: 14 additions & 0 deletions grupoA.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Git Ejercicio Collaborativo</title>
</head>
<body>
<h1>Git Ejercicio Collaborativo</h1>
<p>Nombre y animal favorito</p>
<ul>
<li>Irene - Panda rojo</li>
</ul>
</body>
</html>
15 changes: 15 additions & 0 deletions grupoB.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Git Ejercicio Collaborativo</title>
</head>
<body>
<h1>Git Ejercicio Collaborativo</h1>
<p>Nombre y animal favorito</p>
<ul>
<li>Pedro - Panda rojo</li>
<li>Laura - Pantera negra</li>
</ul>
</body>
</html>
1 change: 0 additions & 1 deletion stephCespedes.txt

This file was deleted.

38 changes: 0 additions & 38 deletions students.txt

This file was deleted.