Add your favorite OTT characters to the list and contribute to the hactoberfest 2022
Here is the page link :- https://ankitpareek0141.github.io/Favorite-OTT-characters/
This repository is open to all members of the GitHub community. Any member may contribute to this project without being a collaborator.
Register yourself in the Hacktoberfest 2022
This project follows the contrib.rocks specification. Contributions of any kind are welcome!
- Create a new issue.
- Comment on the issue (if you'd like to be assigned to it) - that way our team can assign the issue to you.
- If you're not sure, here's how to fork the repo.
If you're ready to contribute and create your PR, it will help to set up a local environment so you can see your changes.
-
Clone your fork
If this is your first time forking our repo, this is all you need to do for this step:
$ git clone git@github.com:[your_github_handle]/Favorite-OTT-characters.git && cd Favorite-OTT-characters
If you've already forked the repo, you'll want to ensure your fork is configured and that it's up to date. This will save you the headache of potential merge conflicts.
$ git remote add upstream https://github.com/ankitpareek0141/Favorite-OTT-characters.git
To sync your fork with the latest changes:
$ git checkout main
$ git fetch upstream
$ git merge upstream/main
- Create new branch for your changes
$ git checkout -b new_branch_name
- Start developing! append new character details in
js/characters.js
file.
{
"image": "your_image_url",
"title": "your_image_title",
"description": "your_image_description"
}
- Commit and prepare for pull request (PR). In your PR commit message, reference the issue it resolves (see how to link a commit message to an issue using a keyword).
$ git commit -m "brief description of changes [Fixes #1234]"
- Push to your GitHub account
$ git push
- After your changes are committed to your GitHub fork, submit a pull request (PR) to the
main
branch of theankitpareek0141/Favorite-OTT-characters
repo - In your PR description, reference the issue it resolves (see linking a pull request to an issue using a keyword)
- ex.
Updates out of date content [Fixes #1234]
- ex.
- The website team reviews every PR
- Acceptable PRs will be approved & merged into the
main
branch
- Give Star to this repository if you had learn something!