From 7b034c6a1d7c09a993c980e3b1f10a5055e9e0ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20R=C3=B6llin?= Date: Sat, 31 Mar 2018 23:30:20 +0200 Subject: [PATCH] Fix small typo --- book/10-git-internals/sections/objects.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/10-git-internals/sections/objects.asc b/book/10-git-internals/sections/objects.asc index b786350cb..a25712e26 100644 --- a/book/10-git-internals/sections/objects.asc +++ b/book/10-git-internals/sections/objects.asc @@ -149,7 +149,7 @@ $ git cat-file -p 99f1a6d12cb4b6f19c8655fca46c3ecf317074e0 ==== Depending on what shell you use, you may encounter errors when using the `master^{tree}` syntax. -In PowerShell or CMD on Windows, the `^` character is used for escaping, so you have to double it to avoid this: `git cat-file -p mater^^{tree}`. +In PowerShell or CMD on Windows, the `^` character is used for escaping, so you have to double it to avoid this: `git cat-file -p master^^{tree}`. If you're using ZSH, the `^` character is used for globbing, so you have to enclose the whole expression in quotes: `git cat-file -p "master^{tree}"` ====