Skip to content

Latest commit

 

History

History
46 lines (27 loc) · 1.37 KB

CONTRIBUTING.md

File metadata and controls

46 lines (27 loc) · 1.37 KB

Contributing

Remember to keep it clean. Harassment in code and discussion is completely unacceptable anywhere in our projects code, comments, documentation, issue trackers and related materials. For reference see Thoughtbot's code of conduct.

Setup GitHub signing.

Fork the repo into your git profile, or clone our repo:

Clone the repo:

git clone git@github.com:bnc-projects/spring-boot-java-base.git

Make sure you have the latest from master:

git checkout master
git fetch -p
git rebase

Create a new branch for your feature or bugfix:

git checkout -b <feature-or-bug-fix-name>

Make sure the tests pass:

./gradlew check

Find a pair and make a change together. Add tests for your change. Make the tests pass:

./gradlew check

Push your changes to your github profile with a good commit message. And raise a pull request.

Remember the following: