Skip to content
This repository has been archived by the owner on Nov 1, 2019. It is now read-only.

Computerization/about

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

关于 Computerization 世外信息化社

License: CC BY 4.0 Build Status

本项目的所有文档采用 知识共享署名 4.0 国际许可协议 进行许可。

这是一个基于 gitbook-cli 的 GitHub Pages 静态网站项目。

这个项目中包含了对于世外信息化社的说明:我们是谁,我们做过什么项目,我们追求的是什么。

原文档位于 master branch 下。编译后的静态网站位于 gh-pages branch 下,并通过 GitHub Pages 部署在 https://computerization.github.io/about/

目录结构

也就是你正在阅读的文档。本文档将作为项目指南,提供关于编辑本项目的须知。本文档的内容不在部署的网站中出现

这个文件相当于 Table of Content,是显示在侧边栏中的内容。里面包含了各级文档标题,以及指向对应文档的路径

这个文件是 GitBook 的配置文件。如果需要增加或修改插件,或是改变网页的样式,请编辑这个文档。关于文档格式,可参见 GitBook Documentation

这个文件是 Travis CI 的配置文件,用于自动测试、编译、与部署本项目。一般不需要改动这个文件。

这个文件包含了对于社团的基本说明:我们是谁,我们的哲学

这个文件包含了关于社团活动的简单介绍

这个目录中包含了我们开展的一系列课程及说明

这个目录中是对于曾经的作业收发平台 SAM 以及其衍生作品的介绍。

如何编辑并发布更改

Git clone

git clone https://github.com/Computerization/about.git
cd about

安装 gitbook-cli

你将需要先安装 npm,并通过 npm 安装 gitbook-cli

npm install -g gitbook-cli
gitbook install #install all plugins dependencies

编辑文档

在编辑文档前,建议新建一个 branch 并提交 Pull Request

git branch my-new-branch #please replace the branch name with something meaningful

注意:所有文档均使用 Markdown 语言进行编写

你可以自由地新建目录(文件夹)并在里面添加新的 *.md 文件,但是为了让新文件在网站上显示,你还需要在 SUMMARY.md 中增加指向新文件的条目

如果你已经安装了 gitbook-cli,那么你可以通过 gitbook serve 实时预览你的更改。

保存更改

使用 git commit 保存更改并 push

git add .
git commit -m "some message"
git push

如果你是在新的 branch 中进行编辑,那么你需要前往 Pull Request 页面 提交PR

部署

本项目已经集成 Travis Continuous Integration,因此无需手动编译与部属。

在新的编辑被 merge 到 master branch 后,Travis CI 会自动进行编译并部署到 gh-pages branch 下。

因此,我们建议对于所有编辑新建 branch,并提交 Pull Request。所有的 Pull Request 需要通过 Travis CI 的测试后才能 merge。

我们强烈不建议手动编译与部署,但我们仍提供以下教程供参考:

手动编译
gitbook install #install all plugins dependencies
gitbook build
手动部署
# checkout to the gh-pages branch and pull latest updates
git checkout gh-pages
git pull origin gh-pages --rebase

# copy the static site files into the current directory.
cp -R _book/* .

# add all files and commit
git add .
git commit -a -m "Update docs"

# push to the origin
git push origin gh-pages

# checkout back to the master branch
git checkout master