git delete remote branches
id: 01KCH1D667BNMSC7FFQ5C21C6R
获取远端分支
Fetch the latest changes from the default remote upstream repository (if set)
git fetch
查看所有分支
List all branches (local and remote; the current branch is highlighted by *):
git branch --all
删除远端分支
git push origin --delete <branch_name>
删除本地分支
git branch -d <branch_name>