first commit for the new structure of directories of levels like as @schokotets suggestion

This commit is contained in:
Luca Canali 2022-10-05 11:33:21 +02:00
parent 9caaddc06e
commit b12d0e778f
207 changed files with 14 additions and 91 deletions
levels/low-level/en

View file

@ -0,0 +1,27 @@
[description]
There's a simple command to remove all objects that are not referenced by anything:
git prune
Remove all blobs in this repository.
[congrats]
Generally, `git prune` will be useful if you want to clean up some objects you made.
Alternatively, you can also click the "Reload" button to restart a level.
[setup]
echo "My master password is a1b2c3d4e5" | git hash-object -w --stdin
echo "This blob really should not exist" | git hash-object -w --stdin
echo "This is a virus" | git hash-object -w --stdin
[setup goal]
[win]
OBJECT_COUNT=$(git cat-file --batch-check='%(objectname) %(objecttype)' --batch-all-objects | wc -l)
test "$OBJECT_COUNT" -eq 0