forked from nginx/nginx-gateway-fabric
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing upstream remote command to quickstart guide (nginx#2003)
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
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
``` | ||
|
||
|
@@ -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 | ||
|
||
|