2016-01-04 76 views
3

當我在feature1上工作時,在下面的提交點A處,我被要求在其上建立另一個mod。我們稱之爲feature1+。這意味着該圖是這樣的:在重新綁定之後合併來自類似分支的選定文件

master: o---o---o---o---o 
      \ 
feature1:  o---e---e---e---O---A 
            \ 
feature1+:       o---c---c---X 

現在我想合併feature1+放回feature1,但我知道,在現有和XA最小的文件之間的變化;在c提交中有兩個新的跟蹤文件。

一路上,我開始合併feature1的提交,將e承諾重新劃分爲一個o',以最終減少主提交次數。我相信,有效的圖形是這樣的:

master: o---o---o---o---o 
      \ 
feature1:  o---o'---O---A 
       \  
feature1+:  o---e---e---e---O---A---c---c---X 

但是,這意味着feature1+轉儲e提交到feature1以及當我運行:

git checkout feature1 
git merge feature1+ 

這給了我:

master: o---o---o---o---o 
      \ 
feature1:  o---o'---O---A---e---e---e---O---c---c---X 

我想在不重新引入e的情況下添加c提交。換句話說,將它合併回來:

master: o---o---o---o---o 
      \ 
feature1:  o---o'---O---A---c---c---X 

我該怎麼做?我試過checkoutc的新文件,當在feature1在A,但當然這給了文件沒有保留他們的歷史。

回答

3

雖然分支:feature1在簽出:

git cherry-pick feature1+: A .. X應該得到所需的樹

master: o---o---o---o---o 
      \ 
feature1:  o---o'---O---A---c---c---X 
0

最簡短的回答,通過對Freenode的IRC的#git通道@nevyn建議,是cherry-pick所需提交到feature1(該文檔建議,但我可能只是不敢嘗試):

git checkout feature1 
git cherry-pick C# the first c 
git cherry-pick C# OK, the second one, I didn't think ahead THAT far. 
git branch -d feature1+ # warns + gives the correct command for an unmerged branch 
相關問題