Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1.36 KB

CONTRIBUTING.md

File metadata and controls

48 lines (36 loc) · 1.36 KB

Contributing at quarkus-quinoa

We are beyond excited to see that you want to contribute! We would love to accept your contributions. Navigate through the following to understand more about contributing.

Prerequisites

  • Java 11
  • Apache Maven

Follow the Steps

git clone https://github.com/shivam-sharma7/quarkus-quinoa.git

Note: In the place of shivam-sharma7 you have to add your github username.

  • Create a new branch
git checkout -b <your branch_name>

After creating new branch start making your changes and once the changes done then push your changes and then create a pull_request

  • Push your changes
git push origin <your branch_name>

Now you have to wait for the review. The project maintainer will review your PR and once your PR got approve then they will merged it. If you want to support, please give a ⭐

Things to remember before making changes

Before making any contribution make sure your local main keep up-to-date with upstream main. To do that type the following commands.

  • First add upstream
git remote add upstream https://github.com/quarkiverse/quarkus-quinoa.git
  • Pull all changes from upstream
 git pull upstream main
  • Keep your fork up-to-date
  git push origin main