Skip to content

Latest commit

 

History

History
62 lines (35 loc) · 1.66 KB

CONTRIBUTION.md

File metadata and controls

62 lines (35 loc) · 1.66 KB

Contributing Guidelines:

We welcome all contributions to the Hydrator project. The contribution can be a issue report or a pull request.

Contribution workflow:

  1. Check that there isn't already an issue about your idea to avoid duplicating work.

    • If there isn't one already, please create one so that others know you're working on this
  2. Star the devcer/Hydrator repository to your GitHub account ⭐.

  3. Fork the devcer/Hydrator repository to your GitHub account 🍴.

  4. Clone the forked repository on your local machine 📋💻.

git clone https://github.com/<your-github-username>/Hydrator.git
  1. Sync the fork, to avoid merge conflicts.
    git remote add upstream https://github.com/devcer/Hydrator.git
    git fetch upstream
    git pull upstream master
    git push
    
  1. Create a new branch with your github username as its name.
   git checkout -b <your-github-username>
   
  1. Make the necessary changes / additions within your forked repository.

  2. Add and commit changes made.

   git add .
   git commit -m "commit message"
   
  1. Push the changes to forked repository.
   git push origin <branch-name>
   
  1. Submit a Pull Request against the master branch and wait for the code to be reviewed and merged.

If you're not used to this workflow with git, you can start with some basic docs from GitHub.