From 64d522a72b09ea55945acbd28cf436f1ad481a47 Mon Sep 17 00:00:00 2001 From: Sarthak Agrawal Date: Mon, 20 May 2024 16:28:25 -0600 Subject: [PATCH] Add missing upstream remote command to quickstart guide Problem: The Quickstart instructions were missing the command to the upstream remote Solution: I added the missing command to add the upstream remote --- docs/developer/quickstart.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/developer/quickstart.md b/docs/developer/quickstart.md index 3a8dc3dd87..3d29858036 100644 --- a/docs/developer/quickstart.md +++ b/docs/developer/quickstart.md @@ -31,10 +31,10 @@ Follow these steps to set up your development environment. ``` 2. [Fork the project repository](https://github.com/nginxinc/nginx-gateway-fabric/fork) -3. Clone your repository, and install the project dependencies: +3. Clone your repository with ssh, and install the project dependencies: ```shell - git clone https://github.com//nginx-gateway-fabric.git + git clone git@github.com:/nginx-gateway-fabric.git cd nginx-gateway-fabric ``` @@ -50,6 +50,12 @@ Follow these steps to set up your development environment. make deps ``` +4. Finally, add the original project repository as the remote upstream: + + ```shell + git remote add upstream git@github.com:nginxinc/nginx-gateway-fabric.git + ``` + ## Build the Binary and Images