个人Blog搭建
本次搭建过程,参考此B站视频 链接 一、Nodejs 与 Git 下载与安装1.Nodejs下载 官网链接:nodejs官网 (如果不想安装在自己的C盘,可以参考这篇修改nodejs缓存路径的文章:参考文章) 2.Git下载 官网链接:Git官网 一路默认点到底就行了。 3.测试是否都安装成功 管理员运行cmd,输入以下指令 node -v npm -v (这个是node附带的)git -v 如果见到以下输出,那么说明安装没有问题。 4.下载hexo npm install hexo-cli -g 二、仓库的搭建成功下载好工具后,接下来便可以着手搭建GitHub存储静态页面的仓库 1.注册/登录GitHub 点击Create a new repository进入新建仓库页面 仓库名输入: 用户名.github.io 勾选Public 勾选Add a README file 点击Create创建 2.生成SSH Keys 进入任意文件夹,右键空白处然后点击Git bash here,输入 ssh-keygen -t rsa -C...
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 StartCreate a new post$ hexo new "My New Post" More info: Writing Run server$ hexo server More info: Server Generate static files$ hexo generate More info: Generating Deploy to remote sites$ hexo deploy More info: Deployment