About 1,490,000 results
Open links in new tab
  1. How do I safely merge a Git branch into master? - Stack Overflow

    3738 How I would do this git checkout master git pull origin master git merge test git push origin master If I have a local branch from a remote one, I don't feel comfortable with merging other …

  2. Git merge two local branches - Stack Overflow

    Jul 31, 2014 · The answer from the Abiraman was absolutely correct. However, for newbies to git, they might forget to pull the repository. Whenever you want to do a merge from branchB into …

  3. How to "git merge" without creating a merge commit?

    Is it possible to do a git merge, but without a commit? "man git merge" says this: With --no-commit perform the merge but pretend the merge failed and do not autocommit, to give the user a …

  4. What's the difference between 'git merge' and 'git rebase'?

    May 21, 2013 · In other words, the key difference between merge and rebase is that while merge preserves history as it happened, rebase rewrites it. Let's contextualize these statements with …

  5. merge - Merging 2 branches together in Git - Stack Overflow

    Now if you want to merge feature_branch changes to master, Do git merge feature_branch sitting on the master. This will add all commits into master branch (4 in master + 2 in feature_branch …

  6. What effect does the `--no-ff` flag have for `git merge`?

    Jan 30, 2012 · The --no-ff flag prevents git merge from executing a "fast-forward" if it detects that your current HEAD is an ancestor of the commit you're trying to merge. A fast-forward is when, …

  7. How do you merge two Git repositories? - Stack Overflow

    Sep 15, 2009 · The git merge step fails here with fatal: refusing to merge unrelated histories; --allow-unrelated-histories fixes that as explained in the docs.

  8. What is `git merge` doing? - Stack Overflow

    The git-merge man page and the git-merge-base man pages that you point out discuss multiple common ancestors and recursive merge. I feel that your answer is incomplete without a …

  9. How do I resolve merge conflicts in a Git repository?

    Before pushing your newly committed change to remote server, try git pull --rebase rather git pull and manual merge and it will automatically sync the latest remote server changes (with a fetch …

  10. git - Merging changes from master into my branch - Stack Overflow

    Dec 8, 2016 · git merge master # merge master branch into custom_branch This will update your current branch with the changes from your local master branch, the state of which will be that …