在不应该开发的分支,进行了开发,并且进行了commit和push.
回滚:
git branch
# error_branch
git branch new_branch_for_backup
git reset --hard commit_id
git push origin:error_branch
git checkout right_branch
git merge new_branch_for_backup
git branch -d new_branch_for_backup
git push
参考:
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。