From dad6a3ec702874ad931473af5f9c1faa7ff7fdf7 Mon Sep 17 00:00:00 2001 From: Majid Date: Mon, 13 Oct 2025 16:24:58 +0200 Subject: [PATCH] updating how-to-open-a-pull-request.md file to fix the git command --- website/contributing/how-to-open-a-pull-request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/contributing/how-to-open-a-pull-request.md b/website/contributing/how-to-open-a-pull-request.md index 1b3eeb6224e..ee67f066139 100644 --- a/website/contributing/how-to-open-a-pull-request.md +++ b/website/contributing/how-to-open-a-pull-request.md @@ -46,7 +46,7 @@ A new `react-native` directory will be created with the contents of the core Rea We recommend creating a new branch in your fork to keep track of your changes: ```bash -git checkout --branch my_feature_branch --track origin/main +git checkout -b my_feature_branch --track origin/main ``` ## Chapter II: Implementing your Changes