İstediğiniz sonucun ne olduğu tamamen açık değildir, bu nedenle cevaplarda ve yorumlarında "doğru" yolla ilgili bazı karışıklıklar vardır. Genel bir bakış sağlamaya çalışıyorum ve aşağıdaki üç seçeneği görüyorum:
Birleştirmeyi deneyin ve B'yi çatışmalar için kullanın
Bu değil "için onların sürümü git merge -s ours
" ama "onların sürümü git merge -X ours
(kısaltılmışı" git merge -s recursive -X ours
):
git checkout branchA
# also uses -s recursive implicitly
git merge -X theirs branchB
Bu örneğin budur Alan W. Smith'in cevabı yok.
Yalnızca B'deki içeriği kullan
Bu, her iki dal için bir birleştirme taahhüdü oluşturur ancak tüm değişiklikleri atar branchA
ve yalnızca içeriği tutar branchB
.
# Get the content you want to keep.
# If you want to keep branchB at the current commit, you can add --detached,
# else it will be advanced to the merge commit in the next step.
git checkout branchB
# Do the merge an keep current (our) content from branchB we just checked out.
git merge -s ours branchA
# Set branchA to current commit and check it out.
git checkout -B branchA
Birleştirme işleminin ilk üst öğeyi şimdi gerçekleştirdiğini branchB
ve yalnızca ikincisinin ait olduğunu unutmayın branchA
. Örneğin Gandalf458'in cevabı budur .
Yalnızca B'deki içeriği kullanın ve doğru ebeveyn siparişini koruyun
Bu gerçek "onların sürümü git merge -s ours
". Önceki seçenekte olduğu gibi aynı içeriğe sahiptir (yani yalnızca bu branchB
öğeden), ancak ebeveynlerin sırası doğrudur, yani ilk ebeveyn gelir branchA
ve ikinci ebeveyn gelir branchB
.
git checkout branchA
# Do a merge commit. The content of this commit does not matter,
# so use a strategy that never fails.
# Note: This advances branchA.
git merge -s ours branchB
# Change working tree and index to desired content.
# --detach ensures branchB will not move when doing the reset in the next step.
git checkout --detach branchB
# Move HEAD to branchA without changing contents of working tree and index.
git reset --soft branchA
# 'attach' HEAD to branchA.
# This ensures branchA will move when doing 'commit --amend'.
git checkout branchA
# Change content of merge commit to current index (i.e. content of branchB).
git commit --amend -C HEAD
Bu nedir Paul Pladijs cevabı (geçici şube gerektirmeden) yapar.