From 97d909279e058e595df4b263766c19f70a019479 Mon Sep 17 00:00:00 2001 From: Timo Stamm Date: Fri, 29 Apr 2022 22:48:39 +0200 Subject: [PATCH] Update names in CONTRIBUTING.md We were still using bufbuild/connect - this changes it to bufbuild/connect-go. --- .github/CONTRIBUTING.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 546b0bf4..5c4132c3 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -22,9 +22,9 @@ you to accept the CLA when you open your pull request. ``` mkdir -p $GOPATH/src/github.com/bufbuild cd $GOPATH/src/github.com/bufbuild -git clone git@github.com:your_github_username/connect.git -cd connect -git remote add upstream https://github.com/bufbuild/connect.git +git clone git@github.com:your_github_username/connect-go.git +cd connect-go +git remote add upstream https://github.com/bufbuild/connect-go.git git fetch upstream ``` @@ -40,7 +40,7 @@ make Start by creating a new branch for your changes: ``` -cd $GOPATH/src/github.com/bufbuild/connect +cd $GOPATH/src/github.com/bufbuild/connect-go git checkout main git fetch upstream git rebase upstream/main @@ -70,7 +70,7 @@ We're much more likely to approve your changes if you: * Write a [good commit message][commit-message]. * Maintain backward compatibility. -[fork]: https://github.com/bufbuild/connect/fork -[open-issue]: https://github.com/bufbuild/connect/issues/new +[fork]: https://github.com/bufbuild/connect-go/fork +[open-issue]: https://github.com/bufbuild/connect-go/issues/new [cla]: TODO [commit-message]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html