## 如何貢獻項目
* 在 GitHub 上 `fork` 到自己的倉庫,如 `nickname/Prometheus_Practice`,然后 `clone` 到本地,并設置用戶信息。
```bash
$ git clone git@github.com:nickname/Prometheus_Practice.git
$ cd Prometheus_Practice
$ git config user.name "yourname"
$ git config user.email "your email"
```
* 修改代碼后提交,并推送到自己的倉庫。
```bash
$ #do some change on the content
$ git commit -am "Fix issue #1: change god to good"
$ git push
```
* 在 GitHub 網站上提交 pull request。
* 定期使用項目倉庫內容更新自己倉庫內容。
```bash
$ git remote add upstream https://github.com/mission802/Prometheus_Practice
$ git fetch upstream
$ git checkout master
$ git rebase upstream/master
$ git push -f origin master
```
## 排版規范
本開源書籍遵循 [中文排版指南](https://github.com/mzlogin/chinese-copywriting-guidelines) 規范。