1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-07 09:08:01 +00:00

Fix the name of the file being created in the example.

This commit is contained in:
jbranchaud
2015-09-10 22:02:08 -05:00
parent 45ea795502
commit 67d98e6db5

View File

@@ -4,7 +4,7 @@ Git's `hash-object` command can be used to determine what hash id will be
used by git when creating a blob in its internal file system.
```bash
$ echo 'Hello, world!' > hello-world
$ echo 'Hello, world!' > hola
$ git hash-object hola
af5626b4a114abcb82d63db7c8082c3c4756e51b
```