Blogs

上述在本地文件夹blogs下打开git bash,后进行相关处理,部署是在github上

1.常见的hexo使用命令

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
##生成
npx hexo g

##上传
npx hexo d

##预览

npx hexo serve

##新建文章

npx hexo n ‘myblog’

#使用VPN时,调整Git代理设置
git config --global http.proxy
git config --global https.proxy

#未使用VPN时,取消Git代理设置
git config --global --unset http.proxy
git config --global --unset https.proxy