Skip to content

Commit 6e8cbac

Browse files
committed
Added 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
1 parent 10bae0b commit 6e8cbac

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

docs/developer/quickstart.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ Follow these steps to set up your development environment.
3131
```
3232

3333
2. [Fork the project repository](https://github.com/nginxinc/nginx-gateway-fabric/fork)
34-
3. Clone your repository, and install the project dependencies:
34+
3. Clone your repository with ssh, and install the project dependencies:
3535

3636
```shell
37-
git clone https://github.com/<YOUR-USERNAME>/nginx-gateway-fabric.git
37+
git clone git@github.com:<YOUR-USERNAME>/nginx-gateway-fabric.git
3838
cd nginx-gateway-fabric
3939
```
4040

@@ -50,6 +50,12 @@ Follow these steps to set up your development environment.
5050
make deps
5151
```
5252

53+
4. Finally, add the original project repository as the remote upstream:
54+
55+
```shell
56+
git remote add upstream git@github.com:nginxinc/nginx-gateway-fabric.git
57+
```
58+
5359

5460
## Build the Binary and Images
5561

0 commit comments

Comments
 (0)