diff --git a/git/determine-the-hash-id-for-a-blob.md b/git/determine-the-hash-id-for-a-blob.md index a596553..2cc9b38 100644 --- a/git/determine-the-hash-id-for-a-blob.md +++ b/git/determine-the-hash-id-for-a-blob.md @@ -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 ```