2014-05-21 178 views

回答

0
git fetch; 
git rebase origin BRANCH; 
0

取決於您想要執行的操作。如果你想獲得遠程倉庫的最新變化,並立足於它的變化,我將做到以下幾點:

git fetch <remote name> 
git merge <remote name>/<branch name> 
# resolve your conflicts 
git commit 

或者說,這將是清潔:

git fetch <remote name> 
git checkout <my patches> 
git rebase <remote name>/<branch name> 

,雖然它是重新分配,您必須解決合併衝突,並且在解決衝突後執行

git add <file> 
git rebase --continue 

在這種情況下,我使用了fetch命令,因爲它更像是後續步驟。