github 與 vercel上架教學
筆記 git init #納入管理
git add . #加入倉庫管理 #[.]是指所有資料
git commit -m #輸入上傳的摘要
please tell me who you are
git config --global user.email "github帳號"
git config --global user.name "github使用者名稱"
git commit -m "init project" #要有改變才能
local 本地主機
不是主機都是遠端
到github新建一個專案並複製網址
git remote add origin 剛才複製的網址
git push #送到遠端資料庫
git branch -m main #將branch改名為main
git status [on branch main] ??
git push
git push --set upstream origin main
到專案找code複製網址
到終端機
cd Desktop切換到桌面資料夾
git clone "剛剛到code複製的網址"