-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop Buf reference in contributing guide (#554)
**Before submitting your PR:** Please read through the contribution guide at https://connectrpc.com/connect/blob/main/.github/CONTRIBUTING.md
- Loading branch information
1 parent
be01687
commit f336da5
Showing
1 changed file
with
8 additions
and
8 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 |
---|---|---|
|
@@ -9,20 +9,20 @@ pull request review much smoother. In your issue, pull request, and any other | |
communications, please remember to treat your fellow contributors with | ||
respect! | ||
|
||
Note that you'll need to sign [Buf's Contributor License Agreement][cla] | ||
before we can accept any of your contributions. If necessary, a bot will remind | ||
you to accept the CLA when you open your pull request. | ||
Note that you'll need to sign the [Contributor License Agreement][cla] before | ||
we can accept any of your contributions. If necessary, a bot will remind you to | ||
accept the CLA when you open your pull request. | ||
|
||
## Setup | ||
|
||
[Fork][fork], then clone the repository: | ||
|
||
``` | ||
mkdir -p $GOPATH/src/github.com/bufbuild | ||
cd $GOPATH/src/github.com/bufbuild | ||
git clone [email protected]:your_github_username/connect-go.git | ||
cd connect-go | ||
git remote add upstream https://connectrpc.com/connect.git | ||
mkdir -p $GOPATH/src/connectrpc.com | ||
cd $GOPATH/src/connectrpc.com | ||
git clone [email protected]:your_github_username/connect-go.git connect | ||
cd connect | ||
git remote add upstream https://github.com/connectrpc/connect-go.git | ||
git fetch upstream | ||
``` | ||
|
||
|