标签: git
我已经恢复了一些代码并推入了远程git存储库。即使将更改推送到远程存储库,我如何“取消”还原“更改”。
请在下面找到我所做的:
git revert commit_id git push origin branch_name
现在可以撤消还原吗?
答案 0 :(得分:3)
您的更改已push。不要改变他人的历史!
push
git checkout branch_name git revert revert_id git push origin branch_name