Any contributions to rest-go should follow the following process and guidelines.
- Fork, then clone the project.
git clone [email protected]:your-username/project.name.git
- Create your feature branch.
git checkout -b my-new-feature
- Commit your changes, if you have multiple commits, squase merge them into a single commit.
git commit -am 'rest-go-my-new-feature - your descriptions about feature'
- Push to the feature branch.
git push origin my-new-feature
Pull requests must do the following in order to be merged.
- Match the style of code already existing in the project.
- Must not contain any merge conflicts (Pull and merge master before submitting the pull request).
- Include tests for the modifications in your commit. (Make sure your test is running before send)