1. 切換至master主分支
git checkout master
2. 將最新的master程式碼拉取到本地
git pull
3. 切換至需被覆蓋的xxx分支
git checkout xxx
4. 將master合併到xxx分支
git merge master
5. 將合併後的xxx分支程式碼提交,並推送至xxx分支的遠端倉庫
合併後也可以等本地開發完成後再提交和push。
git add .
git commit -m "Overwrite the master to the branch"
git push origin xxx