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"