···4242```bash
4343git remote add upstream https://github.com/p-stream/p-stream.git
4444git fetch upstream # Grab the contents of the new remote source
4545-git checkout <YOUR_MAIN_BRANCH> # Most likely this would be `origin/main`
4646-git merge upstream/main
4545+git checkout <YOUR_MAIN_BRANCH> # Most likely this would be `origin/production`
4646+git merge upstream/production
4747# * Fix any conflicts present during merge *
4848git add . # Add all changes made during merge and conflict fixing
4949-git commit -m "Update p-stream instance (merge upstream/main)"
4949+git commit -m "Update p-stream instance (merge upstream/production)"
5050git push # Push to YOUR repository
5151```
5252