//查看狀態
git status
//查看分支 會有一個分支git branch -d wlh-dev
git branch
//刪除wlh-dev 分支
git branch -d wlh-dev
//再次查看分支
git branch
//拉代碼
git pull
//查看狀態
git status
//新分支創建的同時切換分支
git checkout -b wlh-dev1222
//查看狀態
git status
//刪除線上開發分支
git push origin --delete? wlh-dev
//推代碼
git push origin wlh-dev1222