This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 禁止本地保存账号 | |
git config --global --unset credential.helper | |
git config --system --unset credential.helper | |
# 本地保存账号 | |
git config credential.helper store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gitbook-cli | |
npm install -g gitbook-cli | |
gitbook-cli -V | |
# add SUMMARY.md | |
gitbook init | |
# check | |
gitbook serve |