Top "Merge" questions

Merging is a generic term for combining two or more related sets of data.

Git merge with force overwrite

I have a branch called demo which I need to merge with master branch. I can get the desired result …

git github merge
Git merge reports "Already up-to-date" though there is a difference

I have a git repository with 2 branches: master and test. There are differences between master and test branches. Both branches …

git merge
Git diff between current branch and master but not including unmerged master commits

I want a diff of all changes in a branch that is not merged to master yet. I tried: git …

git version-control merge diff git-diff
Merge a Branch into Trunk

I'm facing a peculiar problem with SVN merge. I want to merge from a dev branch to trunk. We have …

svn version-control merge
How to import existing Git repository into another?

I have a Git repository in a folder called XXX, and I have second Git repository called YYY. I want …

git merge git-merge
Undo a merge by pull request?

Someone accepted a pull request which they shouldn't have. Now we have a bunch of broken code merged in. How …

git github merge pull-request
SVN how to resolve new tree conflicts when file is added on two branches

When merging a couple of branches (using SVN 1.6.1) where a file has been added on both branches (and then worked …

svn merge tree-conflict
Visual Studio Code how to resolve merge conflicts with git?

I tried to merge my branch with another branch and there was a merge conflict. In Visual Studio Code (version 1.2.1) …

git visual-studio merge visual-studio-code
Git merge two local branches

I have branch Master, branchA and branchB. Now I'm working in the branchA and I need to merge branchA with …

git merge
What's the best three-way merge tool?

Subversion, Git, Mercurial and others support three-way merges (combining mine, theirs, and the "base" revision) and support graphical tools to …

version-control merge dvcs