2014-12-24 81 views
1

我有遠程分支機構,如:推變化到一個特定的遠程分支在Git中

$ git branch -r 
    origin/HEAD -> origin/development 
    origin/deploy-prod 
    origin/development 
    origin/master 

我簽出產地/主爲

$ git checkout -b trq17 origin/master 
$ git branch 
    development 
* trq17 

現在我想在trq17分支推變爲遠程產地/主。我怎樣才能做到這一點?

回答

2

你想先合併它們,然後將結果推送到遠程。這可以降低人們推送破碎的代碼或有衝突的代碼的可能性。

git checkout master 
git merge trq17 
git commit (if there was a merge commit or conflicts occurred) 
git push origin master