Hexo安装流程
容易遇到的问题: 提示ssh: connect to host github.com port 22: Connection timed out代表“该错误表明在尝试通过 SSH 连接到 GitHub 时,连接被阻止或超时。”可以CMDping一下github.com如果不通,更换CF的NDS1.0.0.1 第一次使用VScode执行代码报错时,需要到使用管理员身份打开 powershell ,输入以下命令Set-ExecutionPolicy RemoteSigned 更换设备后,除了安装no和git环境。还需要到博客根目录,鼠标右键选择在Git BASH执行一下npm install -g hexo-cli && hexo -v安装Hexo
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 post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment
Hexo博客搭建过程
主题安装运行以下代码安装butterfly主题 1git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly 安装插件如果你没有 pug 以及 stylus 的渲染器,请下载安装: 1npm install hexo-renderer-pug hexo-renderer-stylus --save 启用主题修改 Hexo 根目录下的 _config.yml,把主题改为 butterfly 1theme: butterfly 减少升级带来的不便(建议,此步骤可选)将.\themes\butterfly\_config.yml文件复制一份,重命名为_config.butterfly.yml并移动到Hexo根目录下以后只需要在_config.butterfly.yml进行配置就行,...