要努力啊小汤!
当你的才华还不足以撑起你的野心时,你应该静下心学习!!!

1、拉取代码报错:You have not concluded your merge

错误截图:


解决方案:
一、保留你本地的修改

git merge --abort
git reset --merge

二、抛弃本地的修改

git fetch --all
git reset --hard origin/master
git fetch

2、上传代码报错: failed to push some refs to

报错截图:
image.png

解决方案:

先拉去一次:git pull origin heyp
再次提交:git push origin heyp

若是还未解决

git pull --rebase origin heyp
git push -u origin heyp

vue 项目报错

Failed to mount component: template or render function not defined.

解决方案:

将本级的index.js中默认显示项修改为当前文件的相对路径




链接:https://www.jianshu.com/p/cd1594e76d53


posted on 2020-10-22 13:42  做一个有趣的妞儿  阅读(414)  评论(0)    收藏  举报