Skip to content

Commit

Permalink
Fixup CONTRIBUTING.md (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
timostamm authored Jul 28, 2022
1 parent 2b5e014 commit 1448b9e
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,14 @@ you to accept the CLA when you open your pull request.
[Fork][fork], then clone the repository:

```
mkdir -p $GOPATH/src/github.com/bufbuild
cd $GOPATH/src/github.com/bufbuild
git clone git@github.com:your_github_username/protobuf-es.git
cd protobuf-es
git remote add upstream https://github.com/bufbuild/protobuf-es.git
git fetch upstream
```

Make sure that the tests and the linters pass (you'll need `bash` and the
latest stable Go release installed):
Make sure that the tests and the linters pass (you'll need `node`, `bazel`,
`buf`, `bash` and the latest stable Go release installed):

```
make
Expand All @@ -38,15 +36,13 @@ make
Start by creating a new branch for your changes:

```
cd $GOPATH/src/github.com/bufbuild/protobuf-es
git checkout main
git fetch upstream
git rebase upstream/main
git checkout -b cool_new_feature
```

Make your changes, then ensure that `make` still passes. (If you'd prefer, you
can use the standard `go build ./...` and `go test ./...` while you're coding.)
Make your changes, then ensure that `make` still passes.
When you're satisfied with your changes, push them to your fork.

```
Expand Down

0 comments on commit 1448b9e

Please sign in to comment.