03 2024 档案
摘要:Vue命令随记 清除npm缓存 npm cache clean --force 取消ssl验证: npm config set strict-ssl false 安装依赖库 npm install
阅读全文
摘要:信息 npm ERR! Error while executing: npm ERR! D:\CodeTool\Git\Git\cmd\git.EXE ls-remote -h -t git://github.com/adobe-webplatform/eve.git npm ERR! npm ER
阅读全文
摘要:搭建vue项目 参考链接:https://blog.csdn.net/weixin_46002631/article/details/124395689 确认安装了nodejs 安装vue-cli,初始化项目 1、使用以下命令全局安装vue-clinpm install -g vue-cli 或者使
阅读全文
摘要:初始化项目 npm install 或cnpm install 问题一: 需要用管理员窗口运行,本地nojs文件夹权限需管理员权限执行 问题二: 安装过程中长时间进度卡着,尝试删除项目中的node_modules文件夹重新构建 运行项目 package.json查看运行命令信息,运行项目 打包项目
阅读全文
摘要:关闭sessionId 查询session_id 列 select session_id from v$locked_object; 根据session_id 列查出serial# SELECT sid, serial#, username, osuser FROM v$session where
阅读全文
摘要:信息 提交文件出现错误:error: failed to push some refs to 'gitxx.com:xxx.git' 处理 出现错误的主要原因是gitee中的README.md文件不在本地代码目录中 此时我们要执行git pull --rebase origin master命令将R
阅读全文
摘要:问题:当执行git push命令的时候,报错如下: fatal: The current branch master has no upstream branch. To push the current branch and set the remote as upstream 原因当前分支主服务
阅读全文