2015-11-02 94 views
0

我分叉回購和原來的回購已經得到了一個新的分支後,我分叉了。如何從原始存儲庫中獲取我的分支中的新分支?

OriginalRepo 
    | 
    +-BranchA 
    | 
    +-newBranch 


MyFork 
    | 
    +-BranchA 

我想讓分支newBranch進入我的fork,我該怎麼做?

+0

添加遠程,從而獲取它。有關更多詳細信息,請參閱https://help.github.com/articles/configuring-a-remote-for-a-fork/和https://help.github.com/articles/syncing-a-fork/。 – skypjack

+0

反正http://stackoverflow.com/questions/4313125/how-to-sync-with-a-remote-git-repository的可能重複 – skypjack

+0

中提出的兩份建議的解決方案並沒有解決我的問題。所以這就是我問的原因。如果所有我需要做的就是混帳拉它會一直在所有 –

回答

1
git remote add OriginalRepo repository-URL 
git fetch OriginalRepo 
git checkout newBranch 
+0

這個工作我必須也做到這一點,以獲得分支成我的叉子「git push origin newBranch」 –

相關問題