Skip to content

Instantly share code, notes, and snippets.

@dfinke
Last active August 17, 2021 12:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dfinke/7d878ca95397f037a1cfeceed76a3b6c to your computer and use it in GitHub Desktop.
Save dfinke/7d878ca95397f037a1cfeceed76a3b6c to your computer and use it in GitHub Desktop.
Opens the GitHub web editor on a repo
function Open-GHWebEditor {
<#
.SYNOPSIS
Opens the GitHub web editor on a repo.
.EXAMPLE
Open-GHWebEditor powerShell/powerShell
#>
param(
[Parameter(Mandatory)]
$slug
)
$url = "https://github.dev/$($slug)"
Start-Process $url
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment