8655867ca2
that use the git-branch-delete-interactive function. Thanks to @Mikachu for helping with the completion function implementation over the #zsh chat. Closes #265
16 lines
450 B
Bash
16 lines
450 B
Bash
# vim:et sts=2 sw=2 ft=zsh
|
|
local -a remotes
|
|
if (( ${*[(I)(-r|--remotes)]} )); then
|
|
remotes=(${^*:#-*})
|
|
else
|
|
remotes=(${(f)"$(command git rev-parse --abbrev-ref ${^*:#-*}@{u} 2>/dev/null)"})
|
|
fi
|
|
if command git branch --delete ${@} && \
|
|
(( ${#remotes[@]} )) && \
|
|
read -q "?Also delete remote branch(es) ${remotes} [y/N]? "; then
|
|
print
|
|
local remote
|
|
for remote (${remotes}); do
|
|
command git push ${remote%%/*} :${remote#*/}
|
|
done
|
|
fi
|