Skip to content

Latest commit

 

History

History
84 lines (56 loc) · 2.98 KB

CONTRIBUTING.md

File metadata and controls

84 lines (56 loc) · 2.98 KB

Contributing

This document is a set of guidelines for contributing to this repository.

Getting started

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

All contributions, however small are valued!

If you have an idea to share in the form of Proof of concept, Starterkit or Guideline become a contributor and collaborate with us.

How to become a contributor

Before starting you send us an email to this account so we can add you to our contributors list.

📧 dustincatap@gmail.com

How to contribute

Whether you want to contribute to your new repository or you want to update ERNI awesome resource list the process is the same:

  1. Fork the repository to your personal Github. Forking is basically an easy way to make a duplicate of the repository to your own account.

  2. Clone the project to your own machine.

    # Clone your fork of the repo into the current directory
    git clone https://github.com/<your-username>/<repo-name>
    # Navigate to the newly cloned directory
    cd <repo-name>
    # Assign the original repo to a remote called "upstream"
    git remote add upstream https://github.com/<upsteam-owner>/<repo-name>
  3. If you cloned a while ago, get the latest changes from upstream.

    git checkout <dev-branch>
    git pull upstream <dev-branch>
  4. Create a new topic branch (off the main project development branch) to contain your feature, change, or fix.

    git checkout -b <topic-branch-name>
  5. Commit changes to your own branch.

    git commit -m 'Add some feature'
  6. Locally merge (or rebase) the upstream development branch into your topic branch.

    git pull [--rebase] upstream <dev-branch>
  7. Push your topic branch up to your fork.

    git push origin <topic-branch-name>
  8. Open a Pull Request with a clear title and description so that we can review your changes.

Thanks for your interest in contributing to this repository.

Code of Conduct

This project follows a Code of Conduct in order to ensure an open and welcoming environment.