在安裝好git之後,接著要申請一個github的帳號並建立與github的連線
在terminal輸入以下指令:
git config --global user.name "your-name"
git config --global user.email "your-email"
完成後輸入git config --list查看是否設定完成
連線設定好之後,我們就可以利用指令來將專案push到github上做版本控制
首先要在github上開一個新的Repositories
接著在terminal內移動到專案資料夾裡
依序輸入
git init
git add.
git commit -m "你為這次更動的命名" ex: git commit -m "Create guest model"
git remote add origin github上對應Repositories的網址
git push -u origin master
這樣就成功的把更動push上github了