From d587285f34f79de8ba64b5637952206d321da94a Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Tue, 15 Apr 2025 16:21:53 -0600 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ```