VSCODE 配置
记录一些 VSCODE 配置 ...
记录一些 VSCODE 配置 ...
第一次使用Git ...
关于我因 git clone 慢而去给 git 设置代理而引发的那些事 使用到的命令 $ git config -l 查看所有配置 $ git config --global -l 过程 按着 一招 git clone 加速 这篇文章设置了 git 的代理但是没用(应该是自己没设置正确),现在想想应该是当时没有 reset 仅代理 github 的配置,导致从 github 上下载项目时还是走错误的代理设置。 当时使用这两个命令重置 。 $ git config --global --unset http.proxy $ git config --global --unset https.proxy 因为以上的问题,还影响到了 hexo 的一些操作,比如 deploy 和 init。 尝试一番发现(还卸载重装了 git)只是因为第一步使用 reset 只是重置了这两项,还有两条仅代理 github 的配置没有重置。 $ git config --global http.proxy http://127.0.0.1:1081 $ git config --global https.proxy https://127.0.0.1:1081 使用这两条命令重置代理 github 的配置。 ...
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 $ 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
记录一下第一次搭建 Hexo 的各种问题 教程 Hexo 官方教程 GitHub+Hexo 搭建个人网站详细教程 超详细 Hexo+Github 博客搭建小白教程 多级 categories hexo 基本操作: $ hexo g #生成静态文件 $ hexo new [layout] <title> #layout 有post、draft、page $ hexo s #启动本地 Server $ hexo deploy #可简写为d 配置文件 站点配置文件: $ line_number: false #不显示代码块序号 $ post_asset_folder: true #新建 post 文章时会顺带创建一个文件夹,用来存素材 主题配置文件: $ scheme: Gemini #主题布局 $ busuanzi_count: enable: true #开启访问统计 $ copy_button: enable: true #开启代码块一键复制 $ creative_commons: #增加版权信息 主题 主题美化 设置点击爱心 NexT (目前) Volantis Hugo主题-Mogeko 遇到的一些问题 Hexo next 主题配置右侧栏的分类和标签打开的是空白