shit-happens chapter :P

This commit is contained in:
blinry 2021-01-05 16:58:42 +01:00
parent 9109394271
commit 12ea306302
7 changed files with 169 additions and 0 deletions
levels/shit-happens

View file

@ -0,0 +1,22 @@
title = Restore a deleted file
cards = checkout
[description]
Oops - you deleted the "essay" file, which you worked on all night!
Luckily, Git is here to help! You can use `git checkout` to restore the file!
[setup]
echo important > essay
git add .
git commit -m "Initial commit"
echo "important content" > essay
git commit -am "Improve essay"
rm essay
[win]
# Make changes to all three files, and add all of them to the index.
test "$(cat essay)" = "important content"