01 2023 档案
摘要:Git解决fatal: Could not read from remote repository.的问题 一、问题 当使用Git Bash时,执行命令git pull或者git push的时候出现如下问题: 二、解决 1. 第一种原因: 因为git仓库的用户信息和本地的用户信息不匹配造成的,解决方
阅读全文
摘要:一、关于gitee gitee(中文名:码云 ,原名 Git@OSC)是开源中国推出的基于git的代码托管服务。国内访问GitHub速度比较慢,如果想托管自己的代码到云端,gitee是个不错的选择,华为的鸿蒙2.0源码也是放在gitee上的。 二、安装git 要使用gitee,需要先安装git工具。
阅读全文
摘要:连接数据库出现1045错误 代表 提示密码错误 解决方法: 1.以管理员权限进入命令行 2.进入MySQL的bin目录下 cd E:\mysql-8.0.26-winx64\mysql-8.0.26-winx64\bin 3.关闭mysqld的进程 先输入 tasklist |findstr mys
阅读全文
摘要:报错 Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test (default-test) on project demo2: There are test failures. 问题原因: 单
阅读全文
摘要:<repositories> <repository> <id>nexus-aliyun</id> <name>nexus-aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <releases>
阅读全文
摘要:背景颜色 background-color="rgb(48,65,86)" 文字颜色 text-color = "rgb(255,255,255)" 左边导航栏参差不齐时 style="overflow-x: hidden" 文字选中变色 active-text-color="#ffd04b" 引用
阅读全文
摘要:给选中文本加粗体: Ctrl+B 插入链接:Ctrl+K 插入代码:Ctrl+ ` (Tab上方的那个键) 插入引用:Ctrl+Q 添加表格:Ctrl+Shift+F 添加图片:Ctrl+I 切换Markdown预览:Ctrl+\ 切换全屏:Ctrl+/
阅读全文
摘要:vue-cil的安装 npm install -g @vue/cli 创建一个vue项目 vue create helloword 运行vue项目 cd helloword npm run serve 安装element-ui npm i element-ui -S element-ui完整引入 在
阅读全文