java-tron is an open-source project which needs the support of open-source contributors.
Below are the instructions. We understand that there is much left to be desired, and if you see any room for improvement, please let us know. Thank you.
Here are some guidelines to get started quickly and easily:
If you're about to raise an issue because you think you've found a problem or bug with java-tron, please respect the following restrictions:
-
Please search for existing issues. Help us keep duplicate issues to a minimum by checking to see if someone has already reported your problem or requested your idea.
-
Use the Issue Report Template below.
1.What did you do? 2.What did you expect to see? 3.What did you see instead?
Thank you for considering to help out with the source code! We welcome contributions from anyone on the internet, and are grateful for even the smallest of fixes!
If you’d like to contribute to java-tron, for small fixes, we recommend that you send a pull request (PR) for the maintainers to review and merge into the main code base, make sure the PR contains a detailed description. For more complex changes, you need to submit an issue to the TIP repository to detail your motive and implementation plan, etc. For how to submit a TIP issue, please refer to TIP Specification.
As the author of TIP issue, you are expected to encourage developers to discuss this issue, flesh out your issue by collecting their feedback, and eventually put your issue into practice.
java-tron only has master
, develop
, release-*
, feature-*
, and hotfix-*
branches, which are described below:
-
develop
branch
Thedevelop
branch only accept merge request from other forked branches orrelease_*
branches. It is not allowed to directly push changes to thedevelop
branch. Arelease_*
branch has to be pulled from the develop branch when a new build is to be released. -
master
branch
release_*
branches andhotfix/*
branches should only be merged into themaster
branch when a new build is released. -
release
branch
release_*
is a branch pulled from thedevelop
branch for release. It should be merged intomaster
after a regression test and will be permanently kept in the repository. If a bug is identified in arelease_*
branch, its fixes should be directly merged into the branch. After passing the regression test, therelease_*
branch should be merged back into thedevelop
branch. Essentially, arelease_*
branch serves as a snapshot for each release. -
feature
branch
feature/*
is an important feature branch pulled from thedevelop
branch. After thefeature/*
branch is code-complete, it should be merged back to thedevelop
branch. Thefeature/*
branch is maintainable. -
hotfix
branch
It is pulled from themaster
branch and should be merged back into the master branch and thedevelop
branch. Only pull requests of the fork repository (pull requests for bug fixes) should be merged into thehotfix/
branch.hotfix/
branches are used only for fixing bugs found after release.
If you want to contribute codes to java-tron, please follow the following steps:
-
Fork code repository Fork a new repository from tronprotocol/java-tron to your personal code repository
-
Edit the code in the fork repository
git clone https://github.com/yourname/java-tron.git git remote add upstream https://github.com/tronprotocol/java-tron.git ("upstream" refers to upstream projects repositories, namely tronprotocol's repositories, and can be named as you like it. We usually call it "upstream" for convenience)
Before developing new features, please synchronize your fork repository with the upstream repository.
git fetch upstream git checkout develop git merge upstream/develop --no-ff (Add --no-ff to turn off the default fast merge mode)
Pull a new branch from the develop branch of your repository for local development. Please refer to Branch Naming Conventions,
git checkout -b feature/branch_name develop
Write and commit the new code when it is completed. Please refer to Commit Messages
git add . git commit -m 'commit message'
Commit the new branch to your personal remote repository
git push origin feature/branch_name
-
Push code
Submit a pull request (PR) from your repository to
tronprotocol/java-tron
. Please be sure to click on the link in the red box shown below. Select the base branch for tronprotocol and the compare branch for your personal fork repository.
The only way to get code into java-tron is to send a pull request. Those pull requests need to be reviewed by someone. The following guide explains our expectations around PRs for both authors and reviewers.
- The author of a pull request is the entity who wrote the diff and submitted it to GitHub.
- The team consists of people with commit rights on the java-tron repository.
- The reviewer is the person assigned to review the diff. The reviewer must be a team member.
- The code owner is the person responsible for the subsystem being modified by the PR.
The first decision to make for any PR is whether it’s worth including at all. This decision lies primarily with the code owner, but may be negotiated with team members.
To make the decision we must understand what the PR is about. If there isn’t enough description content or the diff is too large, request an explanation. Anyone can do this part.
We expect that reviewers check the style and functionality of the PR, providing comments to the author using the GitHub review system. Reviewers should follow up with the PR until it is in good shape, then approve the PR. Approved PRs can be merged by any code owner.
When communicating with authors, be polite and respectful.
We would like all developers to follow a standard development flow and coding style. Therefore, we suggest the following:
- Review the code with coding style checkers.
- Review the code before submission.
- Run standardized tests.
Sonar
-scanner and Travis CI
continuous integration scanner will be automatically triggered when a pull request has been submitted. When a PR passes all the checks, the java-tron maintainers will then review the PR and offer feedback and modifications when necessary. Once adopted, the PR will be closed and merged into the develop
branch.
We are glad to receive your pull requests and will try our best to review them as soon as we can. Any pull request is welcome, even if it is for a typo.
Please kindly address the issue you find. We would appreciate your contribution.
Please do not be discouraged if your pull request is not accepted, as it may be an oversight. Please explain your code as detailed as possible to make it easier to understand.
Please make sure your submission meets the following code style:
- The code must conform to Google Code Style.
- The code must have passed the Sonar scanner test.
- The code has to be pulled from the
develop
branch. - The commit message should start with a verb, whose initial should not be capitalized.
- The commit message should be less than 50 characters in length.
Commit messages should follow the rule below, we provide a template corresponding instructions.
Template:
<commit type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
The message header is a single line that contains succinct description of the change containing a commit type
, an optional scope
and a subject.
commit type
describes the kind of change that this commit is providing:
- feat (new feature)
- fix (bug fix)
- docs (changes to documentation)
- style (formatting, missing semi colons, etc. no code change)
- refactor (refactoring production code)
- test (adding or refactoring tests. no production code change)
- chore (updating grunt tasks etc. no production code change)
The scope
can be anything specifying place of the commit change. For example:protobuf
,api
,test
,docs
,build
,db
,net
.You can use * if there isn't a more fitting scope.
The subject contains a succinct description of the change:
- Limit the subject line, which briefly describes the purpose of the commit, to 50 characters.
- Start with a verb and use first-person present-tense (e.g., use "change" instead of "changed" or "changes").
- Do not capitalize the first letter.
- Do not end the subject line with a period.
- Avoid meaningless commits. It is recommended to use the git rebase command.
Message body use the imperative, present tense: "change" not "changed" nor "changes". The body should include the motivation for the change and contrast this with previous behavior.
Here is an example:
feat(block): optimize the block-producing logic
1. increase the priority that block producing thread acquires synchronization lock
2. add the interruption exception handling in block-producing thread
Closes #1234
If the purpose of this submission is to modify one issue, you need to refer to the issue in the footer, starting with the keyword Closes, such as Closes #1234
,if multiple bugs have been modified, separate them with commas,such as Closes #123, #245, #992
.
- Always name the
master
branch anddevelop
branch as "master" and "develop". - Name the
release_*
branch using version numbers, which are assigned by the project lead (e.g., Odyssey-v3.1.3, 3.1.3, etc.). - Use
hotfix/
as the prefix of thehotfix
branch, briefly describe the bug in the name, and connect words with underline (e.g., hotfix/typo, hotfix/null_point_exception, etc.). - Use
feature/
as the prefix of thefeature
branch, briefly describe the feature in the name, and connect words with underline (e.g., feature/new_resource_model, etc.).
- Create one PR for one issue.
- Avoid massive PRs.
- Write an overview of the purpose of the PR in its title.
- Write a description of the PR for future reviewers.
- Elaborate on the feedback you need (if any).
- Do not capitalize the first letter.
- Do not put a period (.) in the end.
As a reviewer, you may find yourself in one of the sitations below. Here’s how to deal with those:
The author doesn’t follow up: ping them after a while (i.e. after a few days). If there is no further response, close the PR or complete the work yourself.
Author insists on including refactoring changes alongside bug fix: We can tolerate small refactorings alongside any change. If you feel lost in the diff, ask the author to submit the refactoring as an independent PR, or at least as an independent commit in the same PR.
Author keeps rejecting your feedback: reviewers have authority to reject any change for technical reasons. If you’re unsure, ask the team for a second opinion. You may close the PR if no consensus can be reached.
While contributing, please be respectful and constructive, so that participation in our project is a positive experience for everyone.
Examples of behavior that contributes to creating a positive environment include:
- Using welcoming and inclusive language Being respectful of differing viewpoints and experiences
- Gracefully accepting constructive criticism
- Focusing on what is best for the community
- Showing empathy towards other community members
Examples of unacceptable behavior include:
- The use of sexualized language or imagery and unwelcome sexual attention or advances
- Trolling, insulting/derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others’ private information, such as a physical or electronic address, without explicit permission
- Other conduct which could reasonably be considered inappropriate in a professional setting