Git 给单个项目配置name和email Git 给单个项目配置name和email在每个项目的主目录下一个隐藏文件夹.git.git文件夹中有一个config文件可以发现以下内容,如果没有,则说明当前项目未配置,使用的是global配置123[user] name = J1aHe email = j1ahe@foxmail.com 也可使用命令修改1234567# 修改当前项目用户名git config user.name 2024-11-07 Git #Git
Hexo迁移 Hexo迁移注意!!!仅本人方法,不代表其他任何人 1.新电脑上安装hexo1npm install hexo-cli -g 2.在想要的地方生成文件夹1hexo init blog 3.然后将之前旧文件夹的内容,解压到新的blog文件夹因为这次刚好想换个主题,所以我只把source文件夹替换掉了 4.最后修改_config.yml的配置注意最后deploy的配置 1234deploy: t 2024-10-28 Hexo #Hexo #迁移
Java全局异常处理 Java全局异常处理 全局异常处理是一种将异常处理代码从业务逻辑中分离出来的技术。 在Java中,全局异常处理使用@ControllerAdvice注解定义一个全局的异常处理类。 在该类中,使用@ExceptionHandler注解捕获异常并进行处理。 使用全局异常处理技术,可以统一处理异常,提高代码的复用性,降低代码的冗余度。 步骤1. 定义自定义异常类12345678910111213141 2024-10-28 Java > 异常 > Exception #Java #异常 #Exception
Mysql数据复制 Mysql数据复制 将一张表的数据复制(not迁移/导入)到另外一张表 方法一 拷贝表1的全部数据到表2 1INSERT INTO table2 SELECT * FROM table1 方法二 创建表2, 同时拷贝表1的数据和结构到表2 1CREATE TABLE table3 SELECT * FROM table1 方法三 创建表2,只拷贝表1的结构到表2,不拷贝数据 2024-10-26 Mysql #Mysql #数据复制
Spring Security Spring SecurityMaven依赖12345<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> <!-- 6.19版本往后需要java1 2024-10-25 Spring > Spring Sercurity #Spring #Spring Security
Hexo基础命令 Hexo命令基础命令12345678# 清除缓存hexo clean# 生成文件hexo g[generate]# 部署hexo d[deploy] 创建基础功能页面123456789101112# 创建【分类(categories)】选项hexo new page categories# source/categories/index.md 中添加# type: "categorie 2024-10-24 Hexo #Hexo #博客 #命令
Hello World Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick 2024-10-24