Git 與相關指令 (持續更新中)
好用的git指導書 git book https://git-scm.com/book/zh-tw/v2 ------------------------------------------------------------- 上傳 dir cd cousera-test cd site dir git status cd .. git status git add .. git status git commit -m "My first page." git status git push ------------------------------------------------------------- 更改 git add site/index.html git status git commit -m "Small addition to our page content." git status git push ------------------------------------------------------------- 讓網頁與sublime同步 browser-sync start --server --directory --files "*" -------------------------------------------------------------