diff --git a/scripts/cd-repo.ps1 b/scripts/cd-repo.ps1 index 6802935a..8301ca51 100755 --- a/scripts/cd-repo.ps1 +++ b/scripts/cd-repo.ps1 @@ -7,7 +7,7 @@ Specifies the folder name of the Git repository .EXAMPLE PS> ./cd-repo.ps1 rust - ๐Ÿ“‚C:\Repos\rust ยท on branch: ## main ... origin/main + ๐Ÿ“‚C:\Repos\rust entered, current branch is: ## main ... origin/main .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -37,7 +37,7 @@ try { $path = Resolve-Path "$path" Set-Location "$path" - Write-Host "๐Ÿ“‚$path ยท on branch: " -noNewline + Write-Host "๐Ÿ“‚$path entered, current branch is: " -noNewline & git status --short --branch --show-stash exit 0 # success } catch {