参考链接:https://blog.csdn.net/JavaCode_codeMan/article/details/81182412
第一种方法:恢复到之前的版本,删除提交记录
git log //获取日志
git reset --soft ${commit-id} //回滚到 -- 版本id
git stash // 暂存
git push -f //强制刷新
第二种方法:打开Git bash hero进入项目目录执行以下命令放弃本地修改,用origin/master分支覆盖本地代码(亲测有效)
git fetch --all
git reset --hard origin/master
git fetch
Dream is not impetuous, but precipitation and accumulation.
网友评论