mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 13:04:59 +02:00
Update the manuals in Docs/
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
## install-git-extensions.ps1 - Installs Git Extensions
|
||||
## The install-git-extensions.ps1 PowerShell Script
|
||||
|
||||
This PowerShell script installs Git Extensions.
|
||||
|
||||
@ -23,4 +23,31 @@ Author: Markus Fleschutz | License: CC0
|
||||
## Related Links
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
## Source Code
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Installs Git Extensions
|
||||
.DESCRIPTION
|
||||
This PowerShell script installs Git Extensions.
|
||||
.EXAMPLE
|
||||
PS> ./install-git-extensions
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
#>
|
||||
|
||||
try {
|
||||
"Installing Git Extensions, please wait..."
|
||||
|
||||
& winget install --id GitExtensionsTeam.GitExtensions --accept-package-agreements --accept-source-agreements
|
||||
if ($lastExitCode -ne "0") { throw "'winget install' failed" }
|
||||
|
||||
"Git Extensions installed successfully."
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
||||
|
||||
*Generated by convert-ps2md.ps1 using the comment-based help of install-git-extensions.ps1*
|
||||
|
Reference in New Issue
Block a user