Created
January 26, 2026 05:39
-
-
Save shanselman/401ad0eb932c0702ff326387f4a1f22e to your computer and use it in GitHub Desktop.
PowerShell function to quickly jump to a GitHub repo and run Copilot CLI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function yolo { | |
| param([Parameter(Mandatory=$true)][string]$RepoName) | |
| Set-Location "D:\GitHub\$RepoName" | |
| copilot --resume --yolo | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment