[git] Update git-branch-delete-interactive
so we don't suggest deleting remote branches when `git rev-parse` failed. For example, it could fail if a remote tracking branch is gone.
This commit is contained in:
والد
d371d80af2
کامیت
f11bb607c5
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
|
@ -3,7 +3,7 @@ local -a remotes
|
|||
if (( ${*[(I)(-r|--remotes)]} )); then
|
||||
remotes=(${^*:#-*})
|
||||
else
|
||||
remotes=(${(f)"$(command git rev-parse --abbrev-ref ${^*:#-*}@{u} 2>/dev/null)"})
|
||||
remotes=(${(f)"$(command git rev-parse --abbrev-ref ${^*:#-*}@{u} 2>/dev/null)"}) || remotes=()
|
||||
fi
|
||||
if command git branch --delete ${@} && \
|
||||
(( ${#remotes[@]} )) && \
|
||||
|
|
بارگذاری…
مرجع در شماره جدید