Git Extensions - how to merge master into branch

10,734

How can I use Git Extensions to merge the master branch into a feature branch?

  • Checkout the feature branch, because that's the branch you want to update (one of the main rules of using git)
  • right click on the master branch. You should see a 'merge into' menu item in the contextual menu that just opened.
  • done
Share:
10,734

Related videos on Youtube

Sebastian Green
Author by

Sebastian Green

Passionate about embedded software and hardware, control and monitoring systems, music and photography

Updated on June 04, 2022

Comments

  • Sebastian Green
    Sebastian Green almost 2 years

    How can I use Git Extensions to merge the master branch into a feature branch? Is it possible to use the GitExtensions GUI only, or using the git shell is the preferred way to do it?