From 2e39e5ff6837f9ced1b70e98646d479c45e77205 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:27:49 +0200 Subject: [PATCH] Modify git command for upstream remote convention instead of ps Updated instructions for adding upstream remote and rebasing. --- 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 ```