diff --git a/README.md b/README.md index c86fcf1b..c50e986f 100644 --- a/README.md +++ b/README.md @@ -42,11 +42,11 @@ To update a P-Stream instance you can type the below commands into a terminal at ```bash git remote add upstream https://github.com/p-stream/p-stream.git git fetch upstream # Grab the contents of the new remote source -git checkout # Most likely this would be `origin/main` -git merge upstream/main +git checkout # Most likely this would be `origin/production` +git merge upstream/production # * Fix any conflicts present during merge * git add . # Add all changes made during merge and conflict fixing -git commit -m "Update p-stream instance (merge upstream/main)" +git commit -m "Update p-stream instance (merge upstream/production)" git push # Push to YOUR repository ```