1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01:00

feat(git): add branch rename alias gbm (#11909)

Co-authored-by: Gabriel Akinyosoye <gabrielfemi799@gmail.com>
This commit is contained in:
Adam Johnson
2023-09-26 08:22:32 +01:00
committed by GitHub
parent aaa74964a8
commit bca62f78e2
2 changed files with 2 additions and 0 deletions

View File

@@ -125,6 +125,7 @@ alias gbD='git branch --delete --force'
alias gbda='git branch --no-color --merged | command grep -vE "^([+*]|\s*($(git_main_branch)|$(git_develop_branch))\s*$)" | command xargs git branch --delete 2>/dev/null'
alias gbgd='LANG=C git branch --no-color -vv | grep ": gone\]" | awk '"'"'{print $1}'"'"' | xargs git branch -d'
alias gbgD='LANG=C git branch --no-color -vv | grep ": gone\]" | awk '"'"'{print $1}'"'"' | xargs git branch -D'
alias gbm='git branch --move'
alias gbnm='git branch --no-merged'
alias gbr='git branch --remote'
alias ggsup='git branch --set-upstream-to=origin/$(git_current_branch)'