Top "Git-merge" questions

git-merge is a git command which integrates changes from another branch by incorporating commits into the currently checked-out branch.

Merge development branch with master

I have two branches namely master and development in a GitHub Repository. I am doing all my development in development …

git git-merge
Get changes from master into branch in Git

In my repository I have a branch called aq which I'm working on. I then committed new work and bugs …

git version-control git-merge
How to use git merge --squash?

I have a remote Git server, here is the scenario which I want to perform: For each bug/feature I …

git git-merge git-squash
The following untracked working tree files would be overwritten by merge, but I don't care

On my branch I had some files in .gitignore On a different branch those files are not. I want to …

git merge git-merge git-fetch
Is there a "theirs" version of "git merge -s ours"?

When merging topic branch "B" into "A" using git merge, I get some conflicts. I know all the conflicts can …

git git-merge
How to undo a git merge with conflicts

I am on branch mybranch1. mybranch2 is forked from mybranch1 and changes were made in mybranch2. Then, while on mybranch1, …

git git-merge git-merge-conflict
When do you use Git rebase instead of Git merge?

When is it recommended to use Git rebase vs. Git merge? Do I still need to merge after a successful …

git version-control git-merge git-rebase
What's the simplest way to list conflicted files in Git?

I just need a plain list of conflicted files. Is there anything simpler than: git ls-files -u | cut -f 2 | sort …

git git-merge git-merge-conflict
Git merge errors

I have a git branch called 9-sign-in-out with perfectly working code, and I want to turn it into the master. …

git branch git-merge git-branch