git 命令行备忘

如果你创建一个空的仓库推送上

touch README.md SUMMARY.md
git init
git add README.md SUMMARY.md
git commit -m "first commit"
git remote add gitbook https://git.gitbook.com/shanksleo/mountainlian.git
git push -u gitbook master

如果本地已经有仓库了

git remote add gitbook https://git.gitbook.com/shanksleo/mountainlian.git

git push -u gitbook master