Rename levels to avoid numbers

This commit is contained in:
Sebastian Morr 2020-09-15 14:51:03 +02:00
parent d5ac67c4cc
commit 15ec7a0df4
24 changed files with 0 additions and 0 deletions
levels/blob-create

View file

@ -0,0 +1,11 @@
At its core, Git is very simple. It stores "objects", which are basically files identified by an "identifier" (short: ID).
There are four types of objects: blobs, trees, commits, and tags. The simplest type is a "blob", which is just a piece of text.
Let's create some blobs! To do that, create a file with the desired content, and then use
$ git hash-object -w <file>
The flag -w means "write", and tells Git to actually write the new blob to the disk.
Create three new blobs!

6
levels/blob-create/goal Normal file
View file

@ -0,0 +1,6 @@
echo "Hi" > file1
echo "Ho" > file2
echo "Hu" > file3
git hash-object -w file1
git hash-object -w file2
git hash-object -w file3

0
levels/blob-create/start Normal file
View file

3
levels/blob-create/win Normal file
View file

@ -0,0 +1,3 @@
BLOB_COUNT=$(git cat-file --batch-check='%(objectname) %(objecttype)' --batch-all-objects | grep blob | wc -l)
test "$BLOB_COUNT" -gt 2