From 00a8a2245ecbdfa8ba70332ca70211e9887aedbd Mon Sep 17 00:00:00 2001 From: Mauro Ezequiel Moltrasio Date: Wed, 31 Jul 2024 17:28:50 +0200 Subject: [PATCH] Add git worktree aliases --- zsh/zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/zshrc b/zsh/zshrc index 73bf874..fc10579 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -70,6 +70,10 @@ alias ls='ls --color=auto' alias egrep='grep -E' # Silence egrep deprecation message alias cdtemp='cd $(mktemp -d)' +# git worktree +alias gwa="git worktree add" +alias gwr="git worktree remove" + # stackrox stuff if [[ -f "${HOME}/.infra" ]]; then source "${HOME}/.infra"