Alright! With all of our tests passing, it’s time we roll our feature out to production!

YOUR STEPS FOR THIS SCENE

  1. With our testing success, it’s time to push our feature to production.
  2. Repeat the merge and push steps for the production branch

  3. Click master and then choose origin/production from the dropdown menu


  4. Click master and then choose origin/production from the dropdown menu


  5. Go to View->Command Palette


  6. Type Merge in the drop down box and select Git Merge Branch... from the dropdown menu


  7. Choose master from the dropdown menu


  8. Click the sync putton to push the changes. Click OK, if prompted.


  9. Now you can watch the production pipeline job build in Jenkins.


  10. Once the pipeline build is complete, click the Patients PROD bookmark and login to the application. Search for your “ficticious user” from the very first scene of this workshop.


  11. Click view and validate you see the Notes field.


  12. Congratulations! You have successfully pushed your feature to production!

Git

  1. With our testing success, it’s time to push our feature to production.
  2. Repeat the merge and push steps for the production branch
git checkout production
git merge master
git push


  1. Now you can watch the production pipeline job build in Jenkins.


  2. Once the pipeline build is complete, click the Patients PROD bookmark and login to the application. Search for your “ficticious user” from the very first scene of this workshop.


  3. Click view and validate you see the Notes field.


  4. Congratulations! You have successfully pushed your feature to production!