2 Star 3 Fork 0

rookie-ninja / rk-grpc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CONTRIBUTING.md 2.12 KB
一键复制 编辑 原始数据 按行查看 历史
dongxuny 提交于 2021-07-12 04:37 . Add contribution guide

Table of Contents generated with DocToc

Contributing

If you'd like to add new features, please open an issue describing your proposal problem; discussing feature changes ahead of time makes pull request review much smoother. In your issue, pull request, and any other communications, please remember to treat your fellow contributors with respect! We take our code of conduct seriously.

Setup

Fork, then clone the repository:

git clone https://github.com/rookie-ninja/rk-grpc.git
cd rk-grpc
git remote add upstream https://github.com/rookie-ninja/rk-grpc.git
git fetch upstream

Install rk-grpc's dependencies:

go mod tidy

Making Changes

Start by creating a new branch for your changes:

git checkout master
git fetch upstream
git rebase upstream/master
git checkout -b cool_new_feature

Make your changes, then ensure that make lint and make test still pass. If you're satisfied with your changes, push them to your fork.

git push origin cool_new_feature

Then use the GitHub UI to open a pull request.

At this point, you're waiting on us to review your changes. We try to respond to issues and pull requests within a few business days, and we may suggest some improvements or alternatives. Once your changes are approved, one of the project maintainers will merge them.

We're much more likely to approve your changes if you:

  • Add tests for new functionality.
  • Write a good commit message.
  • Maintain backward compatibility.
Go
1
https://gitee.com/rookie-ninja/rk-grpc.git
git@gitee.com:rookie-ninja/rk-grpc.git
rookie-ninja
rk-grpc
rk-grpc
master

搜索帮助