Git 删除本地和远程分支

Git 删除本地和远程分支

// 删除本地分支
git branch -d <BranchName>
// 删除远程分支
git push origin --delete <BranchName>