云驹博客

路漫漫其修远兮,吾将上下而求索。

0%

git删除分支

git 删除分支

1
2
3
4
5
# 删除远程分支
git push origin --delete [branch_name]

# 删除本地分支
git branch -d [branch_name]