git在CLI访问远程仓库有两种url

1
2
ssh形式:git@github.com:username/reponame.git
http形式:https://github.com/username/reponame.git

ssh形式

通过ssh访问远程仓库如github,需要设置ssh key pair,设置后做git操作不需要输入github的用户名和密码。所以如果clone仓库时使用的是ssh url,在CLI访问github就是用的ssh密钥对来做身份认证

http形式

阅读全文 »

官网

https://hexo.io/zh-cn/ 看网站底部,似乎该站也是hexo搭建的

theme

1
git clone https://github.com/theme-next/hexo-theme-next themes/next

查看这款主题支持哪些插件:查阅themes\next\_config.yml

阅读全文 »

nodejs

安装模块

安装模块到当前项目node_modules目录下

1
npm install module-name

安装模块到本机的node.js 全局安装目录下

阅读全文 »

redis源码安装过程

安装环境:win101909 wsl2 ubuntu20.04

ubuntu发行版软件仓库提供的redis安装版本是稳定版,且一般落后于最新版的redis,所以不从软件仓库安装,而是下载源码编译安装

从发行版仓库安装命令

1
2
$sudo apt-get update
$sudo apt-get install redis-server
阅读全文 »