Now that we validated our changes worked in our development environment, it is time for us to merge our feature branch to promote our changes along.

YOUR STEPS FOR THIS SCENE

  1. Launch VS Code, bring it to the foreground, and click on the Explorer Button (in yellow square, below)
  2. Click the sync icon across the bottom (in yellow square, below) OR by using the more actions menu and selecting pull


  3. Click ‘OK’ if you are prompted to confirm.
  4. Click on develop in the checkout menu (in yellow rectangle) and select master (in purple oval).


  5. In the View menu, select the Command Palette (or use CTRL+SHIFT+P).
  6. Type merge branch in the dialog box


  7. Select develop in the Select a branch to merge from dialog box


  8. Click the sync icon across the bottom (in yellow square, below) OR by using the more actions menu and selecting push


  9. Click ‘OK’ if you are prompted to confirm.

Git

  1. Go back to our ssh terminal and enter git pull This will ensure we have all the latest changes to our feature branch


  2. Enter git checkout master
  3. Enter git merge develop


  4. Enter git push


  5. You should see some output return in your console with master -> master at the bottom.