From 3855532a6461320c8d504dfc5255bb4209d9c982 Mon Sep 17 00:00:00 2001 From: Rafi Date: Wed, 7 Mar 2018 22:36:47 +0530 Subject: [PATCH] list converted to single paragraph list converted to single paragraph --- book/10-git-internals/sections/objects.asc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/book/10-git-internals/sections/objects.asc b/book/10-git-internals/sections/objects.asc index 85d3ca96e..b608ad2a8 100644 --- a/book/10-git-internals/sections/objects.asc +++ b/book/10-git-internals/sections/objects.asc @@ -141,9 +141,7 @@ Notice that the `lib` subdirectory isn't a blob but a pointer to another tree: [NOTE] ==== -* 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}` -* 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}"` +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}`. 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}"` ==== [source,console]