Rename local path variable in ga() to avoid clobbering zsh PATH (#5115)

Co-authored-by: John Allen <git@porcnick.com>
This commit is contained in:
John Allen
2026-03-26 07:47:49 +01:00
committed by GitHub
co-authored by John Allen
parent 22e84776a8
commit 8c6fcbf2f0
+4 -4
View File
@@ -7,11 +7,11 @@ ga() {
local branch="$1"
local base="$(basename "$PWD")"
local path="../${base}--${branch}"
local wt_path="../${base}--${branch}"
git worktree add -b "$branch" "$path"
mise trust "$path"
cd "$path"
git worktree add -b "$branch" "$wt_path"
mise trust "$wt_path"
cd "$wt_path"
}
# Remove worktree and branch from within active worktree directory.