Skip to content

Commit 6044422

Browse files
authored
Merge pull request #1098 from aollier/trailing_spaces
removed trailing spaces
2 parents 458aed2 + 6b07dfd commit 6044422

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ $ 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}`.
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}`.
153153
When using PowerShell, parameters using {} characters have to be quoted to avoid the parameter being parsed incorrectly: `git cat-file -p 'master^{tree}'`.
154154
155155
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}"`.

book/A-git-in-other-environments/sections/powershell.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ More information about the requirements: (https://docs.microsoft.com/en-us/power
3333
> Update-Module PowerShellGet -Force
3434
> Install-Module Posh-Git -Scope AllUsers
3535
-----
36-
If you want to install Posh-Git only for the current user and not globally, use "-Scope CurrentUser" instead.
36+
If you want to install Posh-Git only for the current user and not globally, use "-Scope CurrentUser" instead.
3737
If the second command fails with an error like `Module 'PowerShellGet' was not installed by using Install-Module`, you'll need to run another command first:
3838

3939
[source,powershell]

book/B-embedding-git/sections/dulwich.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ porcelain.log('.', max_entries=1)
3939

4040

4141
==== Further Reading
42-
42+
4343
* The official API documentation is available at https://www.dulwich.io/apidocs/dulwich.html[]
4444
* Official tutorial at https://www.dulwich.io/docs/tutorial[] has many examples of how to do specific tasks with Dulwich

0 commit comments

Comments
 (0)