Git学习——git-bash
Git-bash学习资料合集 基础教程:菜鸟教程 菜鸟教程:图解 Git Pro Git v2: pdf html CSDN: Git命令 知乎: git系列 极客笔记 : Git 教程 极客教程 : git git自带帮助文档git help xxx / git\mingw64\share\doc\git-doc\\*.html Github Repository操作 git 流程图 相关概念 workspace工作区/work tree工作树/work director工作目录 stage 暂存区/缓存区/暂存目录/index 索引 repository仓库、history版本库、本地仓库、...
基于Hexo搭建个人网页(简中简,完善中...)
0.系统环境 开发系统:Windows 10 Professional x64 测试浏览器:Edge 138.0.3351.77 (正式版本) (64 位)及140.0.3421.0 (正式版本) dev (64 位) *后续软件安装均为windows x64版本 hexo配置文件分两类:站点(全局)配置、主题配置 hexo中的网页分为两种page、post,page是页面,post是文章,page和post都放在source文件夹下,但page在source下,post在source/_post下 hexo也可以自定义页面,参考自定义页面 也可以在默认page上修改某一页面的index.md,来修改页面的布局 md文件支持原生markdown、css、html等语法 hexo自带tags(根据标签分类的页面)、categories(根据类别分类的页面)、about(关于)、link(友情链接)、archives(根据时间线排序)等page,可通过修改_config.yml中menu配置项来添加或删除 hexo新建 1. 下载node.js和git 2. 安装hexo 创建...