Nuclos Git merge: conflict, git merge, squash, git fetch, checkout, kdiff3, branch, conflict management. |
Language: Deutsch · English
Merge branches safely – squash test merge, real merge and conflict resolution.
On this page |
How to merge one branch into another (example: 3.12 into 3.13).
First run a test merge to detect conflicts without committing the result:
# Remote-Heads aktualisieren git fetch # Auf den Ziel-Branch wechseln git checkout 3.13 # Testmerge ohne Ergebnis einzutragen git merge --squash origin/3.12 |
git fetch git checkout 3.13 # Merge, der das Ergebnis sofort einträgt (falls keine Konflikte) git merge origin/3.12 |
If conflicts occur, resolve the files manually (or with a merge tool such as |