Bootstrap

git 回滚到指定版本并推送到远程分支

-- 本地分支回滚到指定版本

git reset --hard <commit ID号>

-- 强制推送到远程分支

git push -f origin <branch name>
;