Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions contribute/contribute-pull-requests/create-pull-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
Loading