About 221,000 results
Open links in new tab
  1. When do you use Git rebase instead of Git merge?

    Apr 30, 2009 · When is it recommended to use Git rebase vs. Git merge? Do I still need to merge after a successful rebase?

  2. 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 …

  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. 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 …

  5. git - How do I finish the merge after resolving my merge conflicts ...

    Teach ' git merge ' the --continue option which allows 'continuing' a merge by completing it. The traditional way of completing a merge after resolving conflicts is to use ' git commit '.

  6. 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 …

  7. Resolve Git merge conflicts in favor of their changes during a pull

    May 22, 2012 · How do I resolve a git merge conflict in favor of pulled changes? I want to remove all conflicting changes from a working tree without having to go through all of the conflicts with …

  8. How to use Visual Studio Code as the default editor for Git …

    Jun 14, 2017 · Today I was trying to use the git mergetool on the Windows command prompt and realized that it was defaulting to use Vim, which is cool, but I'd prefer VS Code. How can I …

  9. You have not concluded your merge (MERGE_HEAD exists)

    When I tried the git pull command I got this message: You have not concluded your merge (MERGE_HEAD exists). Please, commit your changes before you can merge. When I try the …

  10. github - Git merge with force overwrite - Stack Overflow

    Nov 10, 2016 · I have a branch called demo which I need to merge with master branch. I can get the desired result with following commands: git pull origin demo git checkout master git pull …