Polish levels some more, add a "congrats" text

This commit is contained in:
Sebastian Morr 2020-09-16 16:16:11 +02:00
parent 6292d849b9
commit 5066840ae9
30 changed files with 87 additions and 30 deletions
levels/blob-create

View file

@ -0,0 +1,3 @@
Tip: You can also use a command like this to create a blob in a single line:
echo "awesome content" | git hash-object -w --stdin

View file

@ -4,12 +4,8 @@ There are four types of objects: blobs, trees, commits, and tags. The simplest t
Let's create some blobs! To do that, create a file with the desired content, and then use
$ git hash-object -w <file>
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!
Tip: you can also use a command like this to create a blob in a single line:
$ echo "awesome content" | git hash-object -w --stdin