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