feat(git.plugin): adding alias to remove a local branch

This commit is contained in:
Tal Lederman
2023-02-26 15:46:01 +02:00
committed by Koichi Murase
parent ebd541c987
commit a35e10c498

View File

@@ -45,6 +45,7 @@ alias gau='git add --update'
alias gb='git branch'
alias gba='git branch -a'
alias gbd='git branch -d'
alias gbD='git branch --delete --force'
alias gbda='git branch --no-color --merged | command grep -vE "^(\*|\s*(master|develop|dev)\s*$)" | command xargs -n 1 git branch -d'
alias gbl='git blame -b -w'
alias gbnm='git branch --no-merged'