mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-13 19:04:54 +01:00
53 lines
1.1 KiB
Text
53 lines
1.1 KiB
Text
title = Trabajando juntos
|
|
cards = pull commit-auto push
|
|
|
|
[description]
|
|
|
|
¡Agreguemos tu nombre a nuestra lista de estudiantes!
|
|
|
|
Ya tengo un segundo commit en mi máquina del tiempo; ¡trabajemos juntos!
|
|
|
|
[cli]
|
|
|
|
Para volver a comandos anteriores, puedes presionar las flechas hacia arriba y hacia abajo. De esta manera, no tienes que escribir comandos largos dos veces.
|
|
|
|
[congrats]
|
|
|
|
¡Bienvenido a la escuela de viajes en el tiempo! :) ¡Te veré en tu primera clase mañana!
|
|
|
|
[setup]
|
|
|
|
echo "~ Lista de estudiantes actuales ~" > students
|
|
git add .
|
|
git commit -m "Versión inicial"
|
|
git push -u teacher main
|
|
|
|
git update-ref -d refs/remotes/teacher/main
|
|
|
|
[setup teacher]
|
|
|
|
git reset --hard main
|
|
|
|
echo "
|
|
|
|
Sam
|
|
Alex" >> students
|
|
|
|
git add .
|
|
git commit -m "Añadidos dos estudiantes"
|
|
|
|
[win]
|
|
# Obtén el segundo commit de tu profesora usando git pull.
|
|
|
|
test "$(git log --oneline teacher/main | wc -l)" -ge 2
|
|
# Añade tu nombre a la lista de estudiantes
|
|
|
|
test "$(cat students |wc -l)" -ge 5
|
|
# Haz commit de tu resultado.
|
|
|
|
test "$(git show main |wc -l)" -ge 5
|
|
|
|
[win teacher]
|
|
# ¡Y usa git push para enviarlo a tu profesora!
|
|
|
|
test "$(git show main |wc -l)" -ge 5
|