Skip to content

Commit c54ddfe

Browse files
author
Klaus Frank
authored
Update powershell.asc
Fix typing error actually it is "AllUsers" and not "LocalMachine for "Install-Module". Sorry for that mistake, I've mixed that up in my last commit.
1 parent d53603f commit c54ddfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
(((powershell)))(((tab completion, powershell)))(((shell prompts, powershell)))
55
(((posh-git)))
6-
The standard command-line terminal on Windows (`cmd.exe`) isn't really capable of a customized Git experience, but if you're using Powershell, you're in luck.
6+
The legacy command-line terminal on Windows (`cmd.exe`) isn't really capable of a customized Git experience, but if you're using Powershell, you're in luck.
77
A package called Posh-Git (https://github.com/dahlbyk/posh-git[]) provides powerful tab-completion facilities, as well as an enhanced prompt to help you stay on top of your repository status.
88
It looks like this:
99

@@ -29,7 +29,7 @@ More information about the requirements: (https://docs.microsoft.com/en-us/power
2929
[source,powershell]
3030
-----
3131
> Update-Module PowerShellGet -Force
32-
> Install-Module Posh-Git -Scope LocalMachine
32+
> Install-Module Posh-Git -Scope AllUsers
3333
-----
3434
If you want to install Posh-Git only for the currnet user and not globaly, use "-Scope CurrentUser" instead.
3535

0 commit comments

Comments
 (0)