From 46b21390fb39aa1706e714e60a5567e59476f816 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Viguier?= <16720275+jf-viguier@users.noreply.github.com> Date: Thu, 4 Jun 2026 18:24:03 +0200 Subject: [PATCH] Modify pull request instructions for upstream remote convention instead of ps Updated instructions for adding upstream remote and fetching instead of ps. cf convention on Github here https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-repository-for-a-fork --- contribute/contribute-pull-requests/create-pull-request.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contribute/contribute-pull-requests/create-pull-request.md b/contribute/contribute-pull-requests/create-pull-request.md index c90f6112a8..807105d8a7 100644 --- a/contribute/contribute-pull-requests/create-pull-request.md +++ b/contribute/contribute-pull-requests/create-pull-request.md @@ -39,9 +39,9 @@ You need to execute these commands at the root of your copy/fork. {{% /notice %}} ``` -git remote add ps https://github.com/PrestaShop/PrestaShop.git -git fetch ps -git rebase -i ps/develop +git remote add upstream https://github.com/PrestaShop/PrestaShop.git +git fetch upstream +git rebase -i upstream/develop git push -f origin develop ```