gitbook与github集成使用

avatar
作者
猴君
阅读量:0

Reference

  • https://northbei.gitbooks.io/gitbook/content/engineer-only/install-gitbook-cli.html
  • https://tonydeng.github.io/gitbook-zh/gitbook-howtouse/howtouse/gitbookcli.html
  • https://www.chengweiyang.cn/gitbook/installation/README.html
  • https://www.youtube.com/watch?v=d4s0Ks0e-tA

1 安装node.js

2 Gitbook安装

  1. 打开cmd,运行以下命令
    npm install -g gitbook-cli 
    gitbook install 

3 新建书籍

  1. 新建一个文件,例如 gitbook_test,进入文件夹,打开cmd,运行以下命令

    gitbook init 
    • 这个命令创建了 readme.md 和 summary.md

4 修改书籍

5 打包静态网站

	gitbook serve 
  • 这个命令生成静态网站,点击输出的网址即可查看网址
  • 你会发现,在你编辑的gitbook项目的目录中会多一个 _book 目录,而这个目录中就是生成的本地预览的静态网站内容。
	gitbook build 
  • 这个命令打包静态网站到文件夹 _book

6 使用github部署静态网页

参考:

  1. 在github上面新建一个仓库

    • 建立的仓库命名规则为 <你的github用户名>.github.io
      在这里插入图片描述
  2. 进入 _book 文件夹, 打开 git bash ,运行以下命令

    git init 
    git remote add origin https://github.com/zp1008611/zp1008611.github.io.git 
    git branch -M main 
    git add . 
    git commit -m "Initial commit" 
    git push -u origin main 
  3. 进入 setting ,点击 page ,修改分支,点击 save
    在这里插入图片描述

  4. 打开网址 https://<你的github用户名>.github.io.

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!