Skip to content

Latest commit

 

History

History
57 lines (34 loc) · 2.41 KB

CONTRIBUTING.md

File metadata and controls

57 lines (34 loc) · 2.41 KB

Contributing

This document describes the entire process of contributing to CatoTV Project. We love to welcome everyone who's willing to contribute.

Proposing new Features

If you're willing to propose new features, please describe the change you wish to make/suggest within a Github issue or in Slack

Development

  1. Fork this repo and the forked repo will be yourgithubusername/catotv

    https://camo.githubusercontent.com/3e5f72d115a4ead05076e7c901bc16cd5c1d7cd3395847cb17913699bd420155/68747470733a2f2f6769746875622d696d616765732e73332e616d617a6f6e6177732e636f6d2f68656c702f626f6f7463616d702f426f6f7463616d702d466f726b2e706e67

  2. Clone the Forked Repo to your local system. I recommend you to clone it using the below command

    git clone <repo-link>
  3. Navigate to the project directory

    cd catotv
  4. Create a new feature branch for what you're working on

    git checkout -b <your_branch_name>
  5. Start writing code

    https://camo.githubusercontent.com/0f141316de7d028dd03c5a359d1b236321169b811df5239bfb70e1a3eb8a907d/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f514e46684f6f6c5665437a5051324d7838352f323030775f642e676966

  6. Commit your changes

    git commit -m "🚀 my beautiful feature"
  7. Push your local branch to the remote repository.

    git push -u origin <your_branch_name>
  8. Create a Pull Request!

    • Go to your repository in browser and click on compare and pull request. Then add a title and description to your pull request that explains your precious effort.

compare and pull request

create PR

  1. Congratulations 🎉, you just made your first contribution to the project. Sit back and relax while we review your code