GitBook部署過程中用到的一些指令
阿新 • • 發佈:2018-11-13
1、安裝nodejs
Windows系統從官網 https://nodejs.org/ 下載當前版本的nodejs,執行msi安裝檔案進行安裝。
2、安裝GitBook
首先設定npm上網代理
npm config set proxy=http://user:[email protected]_host:proxy_port
注1:在配置時輸入的配置命令列都可以在C盤User目錄下的使用者名稱目錄中的.npmrc找到(用notePad開啟)
注2:執行npm指令需要走到 E:\nodejs\node_modules下執行,否則會提示 ‘npm’ 不是內部或外部命令,也不是可執行的程式。
注3:如果仍然報錯,則檢視是不是環境變數的問題。配置兩個環境變數:一個是PATH上增加node.exe的目錄D:\nodejs,一個是增加環境變數NODE_PATH ,值為D:\nodejs\node_modules
3、命令列中輸入npm set config strict-ssl=false
在.npmrc中表現為 strict-ssl=false
4、設定npm的register
npm add taobao https://registry.npm.taobao.org
在.npmrc中表現為 registry=https://registry.npm.taobao.org
5、安裝,一定要加上-g,表示全域性安裝
npm install gitbook-cli -g
#檢視node的版本
node --version
6、git clone http://ip/***/***.git
7、提交程式碼的步驟
提交前先執行 git pull
進行更新,避免衝突。
git add .
git commit –m "本次提交內容描述"
git push
注:這裡有可能報錯 empty ident name (for (null)>) not allowed during executing git -c core.
此時需要配置:
git config --global user.email [email protected]
git config --global user.name yourname