Skip to content

Latest commit

 

History

History
73 lines (43 loc) · 2.32 KB

CONTRIBUTING.md

File metadata and controls

73 lines (43 loc) · 2.32 KB

Contributing Guidelines

Thank you for your interest in contributing. Here's everything you'll need to make your first contribution.

What can I help with?

We welcome contributions of all sorts. Even the most minor changes are warmly welcomed. You may choose to work on an existing issue or propose your own.

Some examples of contributions are:

  1. Documentation: From spell corrections to documenting the necessary information, all comes in this section.

  2. Bugs: Any bug fixes are counted in this section. If you see a new bug, feel free to create a new issue mentioning the problem faced.

  3. Feature Requests: If you would like to see some new features around the website, you can always create a new issue mentioning the requested feature.

Important: Every PR must correspond to an issue. If there isn't an issue related to the PR, open a new issue in the Issues section.

Grabbing an issue

To work on an existing issue, comment on it and say you're working on that issue. Any maintainer will assign you to the issue. This is to avoid conflicts with others also working on the issue.

You can always seek help and are recommended to discuss the course of action and design decisions to tackle the issue on the issue page before making the Pull Request.

How to Contribute?

  1. Fork this repository.

  2. Check out to a new branch for the patch.

git checkout -b <branch name>
  1. Write your code.
  1. Before committing changes, you should verify if the issue is fixed

  2. Commit your changes. Try to follow the best practices while committing changes.

git commit -s
# Then write the commit message and save changes
  1. Push the changes to your fork.
git push -u origin <branch name>
  1. Create a pull request. Be sure to read and follow our pull request guidelines!

  2. Wait for code review and address any issues raised.

  3. Voila! You made a contribution. Keep it up.

Keeping your fork up-to-date

  1. Add this repository as an upstream.
git remote add upstream https://github.com/hhhrrrttt222111/developer-portfolio.git
  1. Pull the latest changes from the main branch.
git pull upstream master