gitbook編寫簡單文件方便快速,安裝使用也簡單,
安裝:npm install gitbook-cli -g
初始化:gitbook init
啟動本地伺服器:gitbook serve
文件生成:gitbook build
但是有一些bug
需要注意一下:
出現如下錯誤或者類似錯誤,解決方法相同:
error: enoent: no such file or directory, stat 'x:\***\_book\gitbook\gitbook-plugin-fontsettings\fontsettings.js'
解決辦法:
使用者目錄下找到以下檔案。
\.gitbook\versions\3.2.3\lib\output\website\copypluginassets.js
查詢檔案中所有的confirm: true
,替換為confirm: false
。
restart after change in file readme.md
stopping server
events.js:183
throw er; // unhandled 'error' event
^error: eperm: operation not permitted, lstat 'x:\***\_book\gitbook'
這裡有一篇嘗試解決的文章,文章比較長,記錄了整個排查的過程,最終得出的解決方法是啟動伺服器之後,立刻刪除_book
目錄 Parallels Desktop 的一些問題
並且無法進行su命令,提示 authentication failure。這個問題產生的原因是由於系統預設是沒有啟用root使用者的,需要我們手工進行操作,在命令列介面下,或者在終端中輸入如下命令 sudo passwd password 你當前的密碼 enter new unix password...
GitBook部署過程中用到的一些指令
2 安裝gitbook 首先設定npm上網 npm config set proxy http user password proxy host proxy port注1 在配置時輸入的配置命令列都可以在c盤user目錄下的使用者名稱目錄中的.npmrc找到 用notepad開啟 注2 執行npm指...
Git本地一些命令
git diff cached ed3708c 暫存區和指定快照對比 修改最後一次提交 刪除檔案 重新命名檔案 git commit amend m 新的提交說明 替換最新快照的提交說明 git commit amend 進入修改最新快照提交說明介面,如果不想修改了按shift z z git ch...