一、git
- 安装VS Code编辑器;
- 安装 Git 客户端;
二、Github Pages
- 注册Github账号
- 创建 Github Pages 的 Repository
name.github.io
- 编写index.html
三、Git 的基本使用
基本练习:
- 创建一个仓库(Repository)
name.github.io
默认创建一个 README
- 创建 index.html
<html>
<body>
<h1>XXXX</h1>
</body>
</html>
可以在github网站上创建,也可以在本地创建;
- 把仓库克隆到本地(git clone)
git clone xxx@xxxxx 命令
- 在本地修改,并推送到服务器
添加到 stage
push
四、静态编译技术
- 安装 ruby
- 安装 jekuyll
- 创建一个 site
- 推送这个 site
五、持续集成
- 注册 Circle CI 账号
- 创建 ssh 钥匙 pair
- 上传 私钥到CircleCI
上传公yao
网友评论