From 170bc7f05f749ec0b06d5837048d6dfc13a13e7b Mon Sep 17 00:00:00 2001 From: Sarthak Agrawal Date: Mon, 20 May 2024 16:28:25 -0600 Subject: [PATCH] Quickstart guide was missing upstream remote command --- 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 245a285029..854176adfb 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