强制回滚分支到某个推送(会丢失之后的提交记录):
git checkout 分支
git reset --hard [推送Id|Tag]
git push -f
例子:
git checkout dev
git reset --hard 89ef9698
git push -f
git checkout 分支
git reset --hard [推送Id|Tag]
git push -f
例子:
git checkout dev
git reset --hard 89ef9698
git push -f