mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-12-24 20:33:19 +01:00
23 lines
503 B
Text
23 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"
|