美文网首页
IDEA Merge into Current时出现You ha

IDEA Merge into Current时出现You ha

作者: 让你变好的过程从来都不会很舒服 | 来源:发表于2022-12-04 11:59 被阅读0次

参考链接: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.

相关文章

网友评论

      本文标题:IDEA Merge into Current时出现You ha

      本文链接:https://www.haomeiwen.com/subject/xslvfdtx.html