Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Merge the new tag 

    Code Block
    languagebash
    # Follow the steps in Keeping Your Fork Up To Date
     
    # Checkout your vendor branch
    $ git checkout myschool-master
     
    # Merge in the changes that have been made up to uportal-4.0.6.  NOTE:  You don't specify upstream/uportal-4.0.6. That notation is for a branch not a tag.
    $ git merge uportal-4.0.6
  2. Handle Merge Conflicts 

    Code Block
    languagebash
    # Handle any merge errors that come up
    $ git mergetool -y
  3. Test the changes with a local build and deploy

...