mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-20 03:13:33 +01:00
Add bbda for quick branch deletion
Add the `gbda` ("git branch delete all") alias for quickly deleting all branches that have been merged into the current branch.
This commit is contained in:
parent
75b9030f48
commit
20ab4e1c25
1 changed files with 1 additions and 0 deletions
|
|
@ -55,6 +55,7 @@ compdef _git gb=git-branch
|
|||
alias gba='git branch -a'
|
||||
compdef _git gba=git-branch
|
||||
alias gbr='git branch --remote'
|
||||
alias gbda='git branch --merged | grep -v "\*" | xargs -n 1 git branch -d'
|
||||
alias gcount='git shortlog -sn'
|
||||
compdef gcount=git
|
||||
alias gcl='git config --list'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue