git status 发现如下信息解决办法:
Your branch is ahead of 'origin/dev' by 65 commits.
If your local changes are bad then just remove them or reset your local master to the state on remote
执行这条命令后:git reset --hard origin/dev
在提交新代码测试就可以了。
本文指导如何处理git中Your branch is ahead of 'origin/dev'的提示,通过git reset --hard origin/dev操作来同步代码,并提供了解决本地更改冲突的建议,确保代码提交的顺利进行。
git status 发现如下信息解决办法:
Your branch is ahead of 'origin/dev' by 65 commits.
If your local changes are bad then just remove them or reset your local master to the state on remote
执行这条命令后:git reset --hard origin/dev
在提交新代码测试就可以了。
4821
1711

被折叠的 条评论
为什么被折叠?