1 Star 0 Fork 139

zhouheng0327 / apollo

forked from nobodyiam / apollo 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CONTRIBUTING.md 2.47 KB
一键复制 编辑 原始数据 按行查看 历史
nobodyiam 提交于 2018-10-14 12:56 . Update CONTRIBUTING.md

Contributing to apollo

Apollo is released under the non-restrictive Apache 2.0 license, and follows a very standard Github development process, using Github tracker for issues and merging pull requests into master. If you want to contribute even something trivial please do not hesitate, but follow the guidelines below.

Sign the Contributor License Agreement

Before we accept a non-trivial patch or pull request we will need you to sign the Contributor License Agreement. Signing the contributor’s agreement does not grant anyone commit rights to the main repository, but it does mean that we can accept your contributions, and you will get an author credit if we do. Active contributors might be asked to join the core team, and given the ability to merge pull requests.

Code Conventions

Our code style is in line with Google Java Style Guide.

We provide template files intellij-java-google-style.xml for IntelliJ IDEA and eclipse-java-google-style.xml for Eclipse. If you use other IDEs, then you may config manually by referencing the template files.

  • Make sure all new .java files have a simple Javadoc class comment with at least an @author tag identifying you, and preferably at least a paragraph on what the class is for.

  • Add yourself as an @author to the .java files that you modify substantially (more than cosmetic changes).

  • Add some Javadocs and, if you change the namespace, some XSD doc elements.

  • A few unit tests should be added for a new feature or an important bug fix.

  • If no-one else is using your branch, please rebase it against the current master (or other target branch in the main project).

  • Normally, we would squash commits for one feature into one commit. There are 2 ways to do this:

    1. To rebase and squash based on the remote branch

      • git rebase -i <remote>/master
      • merge commits via fixup, etc
    2. Create a new branch and merge these commits into one

      • git checkout -b <some-branch-name> <remote>/master
      • git merge --squash <current-feature-branch>
  • When writing a commit message please follow these conventions: if you are fixing an existing issue, please add Fixes #XXX at the end of the commit message (where XXX is the issue number).

Java
1
https://gitee.com/zhouheng0327/apollo.git
git@gitee.com:zhouheng0327/apollo.git
zhouheng0327
apollo
apollo
master

搜索帮助