plugins/git: Add git worktree aliases (#455)

* feat: added git worktree aliases
* feat: updated alias
* feat: update to use common alias name

---------

Co-authored-by: rbevin777 <rbevin7@gmail.com>
This commit is contained in:
Ryan Bevin
2023-07-19 23:03:44 +01:00
committed by GitHub
parent 117e203d38
commit 8e785b1ba1

View File

@ -245,3 +245,9 @@ alias glum='command git pull upstream master'
alias gwch='command git whatchanged -p --abbrev-commit --pretty=medium'
alias gwip='command git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit --no-verify -m "--wip-- [skip ci]"'
alias gwt='git worktree'
alias gwta='git worktree add'
alias gwtls='git worktree list'
alias gwtmv='git worktree move'
alias gwtrm='git worktree remove'