Hexo博客搭建到部署教程
环境配置在正式安装 Hexo 之前,我们需要确认电脑中是否已安装下列应用程序:
GitHub 账号
Node.js
详情安装教程 查看Node版本:node -v
Git
详情安装教程 查看git版本:$ git version
打开git的.ssh目录(我的是C:\Users\Administrator.ssh),然后右键git bash如下图:
执行如下命令: 1234git config --global user.name "你的用户名" git config --global user.email 你的邮箱 ssh-keygen -t rsa -C "你的邮箱" // 记住三下回车,提示y/n就输入y
添加SSH key到github或者gitee: 复制密钥文件内容(路径形如C:\Users\Administrator.ssh\id_rsa.pub),粘贴到New SSH Key即可
测试是否添加成功。在命令行(即Git Bash)依次输入以下命令,返回“You’ve successfully au ...
Mybatis最全指南
Mybatis
Base_Column
123<sql id="Base_Column"> ID,USER_NAME,PASSWORD,CREATE_TIME,UPDATE_TIME,HEAD_PORTRAIT,STATUS</sql>
Base_Where
12345678910111213141516<sql id="Base_Where"> <where> <if test="id != null and id != ''"> AND ID=#{id} </if> <if test="userName != null and userName != ''"> AND USER_NAME like concat('%',#{userName& ...



