Cookie's Site
  • 首页
  • 归档
  • 分类
  • 标签
  • 关于
  •   
  •   
IDEA 更新后每个变量名都是不同颜色的设置项

IDEA 更新后每个变量名都是不同颜色的设置项

在设置 -> Editor -> Color Scheme -> Language Default -> Semantic highlighting -> Semantic highlighting取消勾选

2022-11-30
工具教程
Java IDEA
Sourcetree 推送报错 Updates were rejected because the tag already exists in the remote.

Sourcetree 推送报错 Updates were rejected because the tag already exists in the remote.

原因是本地 tag 跟远端 tag 冲突,所以推送失败。 执行命令 git pull --tags -f 获取远端标签强制覆盖本地 之后再次推送即可。

2022-08-28
Git
Git
解决 Row 9959 was cut by GROUP_CONCAT() 报错的问题

解决 Row 9959 was cut by GROUP_CONCAT() 报错的问题

GROUP_CONCAT() 函数受 SELECT @@group_concat_max_len; 里设置的的最大长度限制,MySQL 默认长度为 1024 个字符。 可以通过以下设置处理 12345678910-- 查询当前设置SELECT @@group_concat_max_len;SHOW VARIABLES LIKE 'group_concat_max_len';--

2022-07-21
Java MySQL
Java MySQL
.gitignore 忽略文件修改后清除缓存并提交

.gitignore 忽略文件修改后清除缓存并提交

12345678#清除本地git所有缓存git rm -r --cached .#添加本地所有文件git add .#提交git commit -m " .gitignore"#push到远程分支git push origin master

2022-05-16
Git
Git
MyBatis Plus 启动扫描报错 The alias '' is already mapped to the value

MyBatis Plus 启动扫描报错 The alias '' is already mapped to the value

问题SpringBoot 项目启动时报错 1Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory'

2022-04-22
Java MyBatis Plus
Java MyBatis Plus
使用 GitHub Actions 自动部署 Hexo Blog 到 GitHub Page

使用 GitHub Actions 自动部署 Hexo Blog 到 GitHub Page

介绍之前在使用 Vuepress 构建静态站点时配置了 GitHub Actions 来实现 CI 流程,现在准备配置到 Hexo Blog 上实现提交分支代码自动部署到 GitHub Page 中。 准备工作Git 仓库准备以下两个仓库 Blog 仓库用来存放 Hexo 项目 GitHub Page 仓库用来展示静态博客 生成公钥私钥这里在之前配置 SSH 时已经处理完毕,操作步骤也比较简单

2022-04-17
Git
GitHub Actions CI
IDEA Setting Repository 同步仓库报错解决

IDEA Setting Repository 同步仓库报错解决

报错 Commit on repo without HEAD currently not supported 将当前设置导出备份,然后删除 C:\Users\USERNAME\AppData\Roaming\JetBrains\IntelliJIdeaXXX\settingsRepository reset IDEA 后,再次尝试同步,正常 报错 git upload pack 网络问题,换

2022-03-10
工具教程
Java IDEA
使用 npm-check-updates 更新前端项目中使用到的 npm 包

使用 npm-check-updates 更新前端项目中使用到的 npm 包

安装1npm install -g npm-check-updates 使用12345ncu --help //查看相关命令ncu //检查当前项目中是否有需要更新的包ncu -u //更新当前项目中引用的package至最新版 package.json

2021-09-05
JavaScript
JavaScript npm
Git SSH Key 配置好后通过 TortoiseGit GUI 获取代码报错

Git SSH Key 配置好后通过 TortoiseGit GUI 获取代码报错

原因因为 TortoiseGit 默认使用的密钥格式不同,Git 使用 OpenSSH 格式,扩展名为 .rsa,而 TortoiseGit 使用 PuTTY 格式,扩展名为 .ppk。SourceTree 也默认使用的是 PuTTY 格式,可以在工具 -> 选项 -> 一般 -> SSH客户端配置中修改。 解决在安装 TortoiseGit 引导时选择 OpenSSH 格式 或

2021-08-06
Git
Git SSH
WIN10 蓝牙无法删除解决方案

WIN10 蓝牙无法删除解决方案

背景两台电脑互换了无线网卡: A 电脑:AX200 => RTL8828BE B 电脑:RTL8828BE => AX200 新的 Xbox 手柄链接到 B 电脑上成功,删除旧的 Xbox 手柄无线设备失败,在设备管理器里查看 - 显示隐藏的设备 - 蓝牙,找到未连接的 Xbox 手柄删除成功,B 电脑完毕。A 电脑重复以上操作后,在 A 电脑的蓝牙连接池里面有

2021-07-30
工具教程
电脑硬件 WIN10
12

搜索

Hexo Fluid