赞
踩
1)用 git log 查看版本号(commit后的就是版本号)
2)用 git reset --hard <版本号> 命令回滚到之前某版本. 此时本地已经回滚,远程仓库还未回滚
3)用 git push -f 实现远程仓库的回滚
1)用 git log 命令查看版本号(commit后的就是版本号)
2)用 git revert -n <版本号> 命令回滚到之前某版本
3)用 git commit -m “<随便取名>” 提交到本地 git 库
4)用 git push 命令推送到远程仓库
// 情形1:回滚且不保留之后的commit
git log //查看版本号(commit后的就是版本号)
git reset --hard 51e69eeb0a4d733e3d9326098212f523dd2d5ce9 //51e..替换成版本号的名字,本地回滚到该版本
git push -f //实现远程仓库的回滚
// 情形2:回滚但保留之后的commit记录
git log //查看版本号(commit后的就是版本号)
git revert -n 51e69eeb0a4d733e3d9326098212f523dd2d5ce9 //51e..替换成版本号的名字
git commit -m "revert_attempt" //提交到本地git库
git push //推送到远程仓库
参考链接:https://blog.csdn.net/weixin_41427508/article/details/127205128
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。