Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 704 Bytes

UPGRADE.md

File metadata and controls

27 lines (18 loc) · 704 Bytes

Upgrade Microgen

  1. Check to see if you have an upstream remote set using git remote -v

  2. If you don't see the Microgen upstream add it

    git remote add upstream git@github.com:MicrogenSite/microgen.git
  3. Fetch the latest changes

    git fetch upstream
  4. Check out your local main branch

    git checkout main
  5. Merge the upstream branch into your local, be careful to maintain your content and customizations when resolving merge conflicts. Run yarn install && yarn dev after resolving conflicts to generate a new .tina-lock.json file based on the result of your merge.

    git merge upstream/main