Hello World

Author Avatar
ssssdl 5月 16, 2018

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 Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

Git设置代理(突然中文~)

1
2
3
4
5
6
7
8
9
10
11
#socks代理
$git config --global http.proxy 'socks5://127.0.0.1:1080'
$git config --global https.proxy 'socks5://127.0.0.1:1080'

#http代理
$git config --global https.proxy http://127.0.0.1:1080
$git config --global https.proxy https://127.0.0.1:1080

#取消代理
$git config --global --unset http.proxy
$git config --global --unset https.proxy

设置域名

  1. 申请域名,添加添加一个CNAME指向GitHub上的博客
  2. 在GitHub上面设置里面GitHub Pages里面的Custom domain添加上自己的域名
  3. 但是2其实并没有什么用。你下次更新博客的时候又会还原到最初状态。
  4. 真正的解决办法是在本地source目录下添加一个叫CNAME的文件。里面写上自己的域名。不带https啥的。就是一个纯域名,然后重新更新博客