Skip to content

Commit c02f726

Browse files
author
Daniel Sturm
committed
Move each line of paragraph to its own line.
1 parent 8fc0035 commit c02f726

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

book/10-git-internals/sections/objects.asc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ $ git cat-file -p 99f1a6d12cb4b6f19c8655fca46c3ecf317074e0
149149
====
150150
Depending on what shell you use, you may encounter errors when using the `master^{tree}` syntax.
151151
152-
In CMD on Windows, the `^` character is used for escaping, so you have to double it to avoid this: `git cat-file -p master^^{tree}`. When using PowerShell parameters using {} characters have to be quoted to avoid the parameter being parsed incorrectly: `git cat-file -p 'master^{tree}'`.
152+
In CMD on Windows, the `^` character is used for escaping, so you have to double it to avoid this: `git cat-file -p master^^{tree}`.
153+
When using PowerShell, parameters using {} characters have to be quoted to avoid the parameter being parsed incorrectly: `git cat-file -p 'master^{tree}'`.
153154
154155
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}"`.
155156
====

0 commit comments

Comments
 (0)