Skip to content

Commit e2fccb7

Browse files
authored
changed to one sentence on each source-code line
changed to one sentence on each source-code line
1 parent 3855532 commit e2fccb7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,11 @@ Notice that the `lib` subdirectory isn't a blob but a pointer to another tree:
141141

142142
[NOTE]
143143
====
144-
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}"`
144+
Depending on what shell you use, you may encounter errors when using the `master^{tree}` syntax.
145+
146+
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}`.
147+
148+
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}"`
145149
====
146150

147151
[source,console]

0 commit comments

Comments
 (0)