假設我有一個新的feature
分支和一個master
分支。我做了一些更改並將它們提交到feature
分支,但後來我結帳master
並添加了其他更改。我想要做的就是獲取master
的更改並將其應用於feature
。我該怎麼辦?與master
合併?git分支:``git merge master``和``git pull origin master``之間的區別
git checkout feature
git merge master
還是從master
拉更改?
git checkout feature
git pull origin master
這兩個選項有什麼區別?
到底發生了什麼,我的回購協議是,我已經失去了''master''(所做的更改不會''master''分支本身,而是在當使用第一個選項與「feature」合併時,生成的結果是「feature」。這就像合併操作決定保留一些未經修改的文件的''feature''版本,而不是獲得''master''版本。 – amb