赞
踩
删除远程分支
git branch -a //查看所有分支 git push origin --delete 分支名 //删除指定分支
撤销当前分支提交
# 撤销回到commit_id ,前面内容会保存在本地,需要重新git add ,commit ,push git reset commit_id git push -f