mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-13 19:04:54 +01:00
32 lines
971 B
Text
32 lines
971 B
Text
title = Il tuo primo commit!
|
|
cards = commit-auto
|
|
|
|
[description]
|
|
|
|
Puoi usare la tua macchina del tempo per scattare istantanee degli oggetti intorno a te! Qui puoi metterlo in pratica!
|
|
|
|
(Il tuo insegnante versa un pò di acqua nel bicchiere)
|
|
|
|
[cli]
|
|
Nuovamente, al posto di usare le carte, puoi scrivere i comandi, che sono stampati sulle carte, nel terminale in basso!
|
|
|
|
Questo è totalmente opzionale! Ma questa è una conoscenza super utile nel mondo reale - e ti farà avere un distintivo scintillante! :)
|
|
|
|
[setup]
|
|
|
|
echo "Il bicchiere è pieno di acqua." > glass
|
|
|
|
[win]
|
|
|
|
# Crea un'istantanea del bicchiere (un "commit")
|
|
git rev-parse HEAD
|
|
|
|
# Cambia il contenuto del bicchiere!
|
|
! test "$(cat glass)" = "Il bicchiere è pieno di acqua."
|
|
|
|
# E crea un secondo "commit"!
|
|
git rev-parse HEAD^ && ! test "$(git show main:glass)" = "Il bicchiere è bieno di acqua."
|
|
|
|
[congrats]
|
|
|
|
Perfetto! Puoi provare a creare altri "commit". Quando ti sentirai a posto, premi su "Next Level".
|