git remove remote branch 發表於 2018-12-11 | 更新於 2019-01-09 指令操作刪除遠端遠程分支 刪除本機端的分支 (Delete Local Branch)12git branch -d <branch_name>git branch -D <branch_name> 刪除遠端分支12git push <remote_name> :<branch_name>git push <remote_name> --delete <branch_name> 參考How do I delete a Git branch both locally and remotely?