use https style vs. ssh (#1202)

* use https style vs. ssh

* fix the b0rk3d contributing link.

* Appease the robot.
This commit is contained in:
Ville Aikas 2020-04-14 12:04:16 -07:00 committed by GitHub
parent e247dc308d
commit 26f2ef4f11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
# Development
This doc explains how to setup a development environment so you can get started
[contributing](https://github.com/knative/docs/blob/master/community/CONTRIBUTING.md)
to Knative `pkg`. Also take a look at:
[contributing](https://knative.dev/community/contributing/) to Knative `pkg`.
Also take a look at:
- [The pull request workflow](https://github.com/knative/docs/blob/master/community/CONTRIBUTING.md#pull-requests)
- [The pull request workflow](https://knative.dev/community/contributing/reviewing/)
## Getting started
@ -59,7 +59,7 @@ mkdir -p ${GOPATH}/src/knative.dev
cd ${GOPATH}/src/knative.dev
git clone git@github.com:${YOUR_GITHUB_USERNAME}/pkg.git
cd pkg
git remote add upstream git@github.com:knative/pkg.git
git remote add upstream https://github.com/knative/pkg.git
git remote set-url --push upstream no_push
```