mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
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:
@ -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'
|
||||
|
Reference in New Issue
Block a user