mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-05 19:04:33 +01:00
22 lines
503 B
Text
22 lines
503 B
Text
title = Recuperare un file cancellato
|
|
cards = checkout
|
|
|
|
[description]
|
|
|
|
Oops - Hai cancellato il file "essay" dove hai lavorato tutta la notte!
|
|
|
|
Stai sereno, Git è qui per aiutare! Puoi usare `git checkout` per recuperare il file!
|
|
|
|
[setup]
|
|
|
|
echo importante > essay
|
|
git add .
|
|
git commit -m "Commit iniziale"
|
|
echo "contenuto importante" > essay
|
|
git commit -am "Ottimizzato essay"
|
|
rm essay
|
|
|
|
[win]
|
|
|
|
# Recupera il file "essay" che contiene "contenuto importante"
|
|
test "$(cat essay)" = "contenuto importante"
|