前提條件:擁有GitHub賬號
1.用Command line工具創(chuàng)建倉庫username.github.io(命名規(guī)則一定要遵守佃扼,Github用戶名一定要正確)
輸入以下內(nèi)容(有輸入GitHub用戶名和密碼步驟)
echo "# username.github.io" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/username/username.github.io.git
git push -u origin master
2.用Command line工具克隆倉庫到本地
git clone https://github.com/username/username.github.io
3.用Command line工具進入項目并添加index.html文件,然后add集币、commit鳄厌、push操作
cd?username.github.io
echo "Hello World" > index.html
git add --all
git commit -m "Initial commit"
git push -u origin master
4.然后用瀏覽器打開http://username.github.io驗證是否搭建成功
參考資料:https://pages.github.com/