PowerShell/Scripts/show-git-manual.ps1
2021-11-29 16:03:58 +01:00

16 lines
341 B
PowerShell
Executable File

<#
.SYNOPSIS
Shows the Git manual
.DESCRIPTION
This script launches the Web browser with the Git manual.
.EXAMPLE
PS> ./show-git-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://git-scm.com/docs/user-manual"
exit 0 # success