pull错代码,恢复到pull之前 ---本地代码回退

pull错代码,恢复到pull之前 —本地代码回退

本地拉远端分支时,不小心拉错了代码。网上查找了一下,按照此篇文章进行操作。

https://blog.csdn.net/code_segment/article/details/78597441?locationNum=4&fps=1。

(1)git reflog
pull错代码,恢复到pull之前 ---本地代码回退_第1张图片

(2) git reset --hard ae5244a8 填写自己想要回退的版本

在这里插入图片描述

通过以上两部,拉错了的代码就回到了之前的状态。把commit message写的清楚有意义,方便代码出错,回退。

总结
git reflog 先看到提交的代码的id,

git reset --hard [id] id是你要回退的代码的id

原文链接:pull错代码,恢复到pull之前 —本地代码回退

git强制推送指令,解决变基问题

git push origin xxx --force

// 将dev分支的本地强制推送到远程
git push origin dev --force

本地无分支拉取远程新分支

git fetch origin 远程分支名x:本地分支名x
git checkout 新分支名称
git pull origin 新分支名称

参考

你可能感兴趣的:(项目,vue.js)