11 2020 档案

摘要:error: Unexpected console statement (no-console) 解决方法:修改package.json中的eslintConfig:{} 中的 “rules”:{},增加一行代码: "no-console":"off" 保存后 npm install 或者 yarn 阅读全文

posted @ 2020-11-19 14:19 张缤分 阅读(816) 评论(0) 推荐(0)

摘要:对于复杂的系统,我们可能要开好几个分支来开发,那么怎样使用git合并分支呢? 合并步骤:1、进入要合并的分支(如开发分支合并到master,则进入master目录)git checkout mastergit pull 2、查看所有分支是否都pull下来了git branch -a 3、使用merg 阅读全文

posted @ 2020-11-16 13:44 张缤分 阅读(269) 评论(0) 推荐(0)

导航