mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2025-04-29 16:53:55 +02:00
Polish levels some more, add a "congrats" text
This commit is contained in:
parent
6292d849b9
commit
5066840ae9
30 changed files with 87 additions and 30 deletions
levels/blob-create
3
levels/blob-create/congrats
Normal file
3
levels/blob-create/congrats
Normal 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
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue