Top "Merge" questions

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

Using TortoiseSVN how do I merge changes from the trunk to a branch and vice versa?

I've been reading up on branching/merging with Subversion 1.5 using the excellent and free Version Control with Subversion book. I …

svn tortoisesvn merge branch
Eclipse EGit Checkout conflict with files: - EGit doesn't want to continue

I've started Eclipse EGit. In some scenarios it is really not comprehensive. I have local file e.g. pom.xml …

eclipse git merge conflict egit
Moving Git repository content to another repository preserving history

I am trying to move only the contents of one repository (repo1) to another existing repository (repo2) using the following …

git merge repository migrate
How to "git show" a merge commit with combined diff output even when every changed file agrees with one of the parents?

After doing a "simple" merge (one without conflicts), git show usually only shows something like commit 0e1329e551a5700614a2…

git merge
Git - Ignore files during merge

I have a repo called myrepo on the remote beanstalk server. I cloned it to my local machine. Created two …

git merge push ignore repository
What is the precise meaning of "ours" and "theirs" in git?

This might sound like too basic of a question, but I have searched for answers and I am more confused …

git merge
How do I correct "Commit Failed. File xxx is out of date. xxx path not found."

I have recently run into a particularly sticky issue regarding committing the result of a merge in subversion. Our Subversion …

svn merge commit
How can I discard remote changes and mark a file as "resolved"?

I have some local files, I pull from remote branch and there are conflicts. I know that I would like …

git merge conflict git-merge-conflict
How do I Merge two Arrays in VBA?

Given Dim arr1 As Variant Dim arr2 As Variant Dim arr3 As Variant arr1 = Array("A", 1, "B", 2) arr2 = Array("C", 3, "…

arrays vba vb6 merge
Rebasing a Git merge commit

Take the following case: I have some work in a topic branch and now I'm ready to merge back to …

git merge rebase git-rebase git-rewrite-history