1. 程式人生 > >git merge test 分支 到 master

git merge test 分支 到 master

拉取分支

git fetch origin

基於遠端分支建立本地test分支並切換

git checkout -b test origin/test

切換到master分鐘

git checkout master

merge test到master

git merge –no-ff test

提交程式碼

git push origin master