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 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
在提交新代码测试就可以了。