mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-13 19:04:54 +01:00
Translate commit
This commit is contained in:
parent
b780fe7bc1
commit
6b28416d15
1 changed files with 47 additions and 12 deletions
|
@ -1,33 +1,68 @@
|
||||||
title = Your first commit
|
title = Tu primer commit
|
||||||
cards = commit-auto
|
cards = commit-auto
|
||||||
|
|
||||||
[description]
|
[description]
|
||||||
|
|
||||||
You can use your time machine to make snapshots of objects around you! Here, let's practice this!
|
¡Puedes usar tu máquina del tiempo para hacer instantáneas de objetos a tu alrededor! ¡Aquí, practiquemos esto!
|
||||||
|
|
||||||
(Your teacher pours some water into a glass.)
|
(Tu profesora vierte un poco de agua en un vaso.)
|
||||||
|
|
||||||
[cli]
|
[cli]
|
||||||
|
|
||||||
Again, instead of using the card, you can also type the commands which are printed on it into the black terminal below!
|
¡De nuevo, en lugar de usar la tarjeta, también puedes escribir los comandos que están impresos en ella en la terminal negra de abajo!
|
||||||
|
|
||||||
This is totally optional! But this will be a super useful skill in the real world - and it will give you a sparkling golden badge! :)
|
¡Esto es completamente opcional! Pero esta será una habilidad súper útil en el mundo real, ¡y te dará una insignia dorada brillante! :)
|
||||||
|
|
||||||
[setup]
|
[setup]
|
||||||
|
|
||||||
echo "The glass is full of water." > glass
|
echo "El vaso está lleno de agua." > glass
|
||||||
|
|
||||||
[win]
|
[win]
|
||||||
|
Haz una instantánea del vaso (un "commit")
|
||||||
|
|
||||||
# Make a snapshot of the glass (a "commit")
|
|
||||||
git rev-parse HEAD
|
git rev-parse HEAD
|
||||||
|
¡Cambia el contenido del vaso!
|
||||||
|
|
||||||
# Change the contents of the glass!
|
! test "$(cat glass)" = "El vaso está lleno de agua."
|
||||||
! test "$(cat glass)" = "The glass is full of water."
|
¡Y haz un segundo commit!
|
||||||
|
|
||||||
# And make a second commit!
|
git rev-parse HEAD^ && ! test "$(git show main
|
||||||
git rev-parse HEAD^ && ! test "$(git show main:glass)" = "The glass is full of water."
|
)" = "El vaso está lleno de agua."
|
||||||
|
|
||||||
[congrats]
|
[congrats]
|
||||||
|
|
||||||
Nice! You can try making some additional commits. When you feel comfortable, click on "Next Level".
|
¡Bien hecho! Puedes intentar hacer algunos commits adicionales. Cuando te sientas cómodo, haz clic en "Siguiente nivel".title = Your first commit
|
||||||
|
cards = commit-auto
|
||||||
|
|
||||||
|
[description]
|
||||||
|
|
||||||
|
Puedes usar to máquina del tiempo para sacar fotos de los objetos que están alrededor tuyo! Vamos a practicar esto!
|
||||||
|
You can use your time machine to make snapshots of objects around you! Here, let's practice this!
|
||||||
|
|
||||||
|
(Tus profe Andrea se sirve un poco de agua en el vaso.)
|
||||||
|
|
||||||
|
[cli]
|
||||||
|
|
||||||
|
Nuevamente, en lugar de usar la tarjeta, ¡también puedes escribir los comandos que están impresos en ella en la terminal negra a continuación!
|
||||||
|
|
||||||
|
¡Esto es totalmente opcional! Pero esta será una habilidad súper útil en el mundo real y te dará una insignia dorada brillante.! :)
|
||||||
|
|
||||||
|
[setup]
|
||||||
|
|
||||||
|
echo "El vaso esta lleno de agua." > glass
|
||||||
|
|
||||||
|
[win]
|
||||||
|
|
||||||
|
# Toma una foto (haz un "commit")
|
||||||
|
git rev-parse HEAD
|
||||||
|
|
||||||
|
# Cambia el contenido del vaso!
|
||||||
|
! test "$(cat glass)" = "The glass is full of water."
|
||||||
|
|
||||||
|
# Haz un segundo commiteo!
|
||||||
|
git rev-parse HEAD^ && ! test "$(git show main:glass)" = "El vaso está lleno de agua."
|
||||||
|
|
||||||
|
[congrats]
|
||||||
|
|
||||||
|
Genial! Podés intentar hacer algun commit adicional. Cuando te sientas cómodo o cómoda clickea en Siguiente Nivel.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue