Skip to content

Commit

Permalink
Add missing upstream remote command to quickstart guide (nginx#2003)
Browse files Browse the repository at this point in the history
Problem: The Quickstart instructions were missing the command
to the upstream remote

Solution: I added the missing command to add the upstream remote
  • Loading branch information
miledxz committed May 21, 2024
1 parent 2376ed2 commit acfcebf
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions docs/developer/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/<YOUR-USERNAME>/nginx-gateway-fabric.git
git clone git@github.com:<YOUR-USERNAME>/nginx-gateway-fabric.git
cd nginx-gateway-fabric
```

Expand All @@ -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 [email protected]:nginxinc/nginx-gateway-fabric.git
```


## Build the Binary and Images

Expand Down

0 comments on commit acfcebf

Please sign in to comment.