Skip to content

Open-Source-Chandigarh/MeTube

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

This is MeTube a basic and simple version of YouTube. it has a distraction free interface. When a video is searched and opened then that video will contain 2 buttons. One for discription and other for pinned comment.

Contributing

We appreciate your interest in contributing to MeTube. Here's how you can get started:

  1. Find Issues or Create your Own We appreciate you solving existing issues in the repository in the issues tab or to create new

  2. Fork the Repository: Click the "Fork" button at the top of this repository to create a copy in your GitHub account.

  3. Clone Your Fork: Clone your fork to your local machine with git clone.

    git clone https://github.com/<your_github_username>/MeTube.git

  4. Change the working directory: cd MeTube

  5. Add an upstream link to the main branch in your cloned repo:

    git remote add upstream https://github.com/<your_github_username>/MeTube.git

  6. Keep your cloned repo up to date by pulling from upstream (this will also avoid any merge conflicts while committing new changes):

    git pull upstream main

  7. Create a New Branch: Make a new branch for your work with a descriptive name.

    git checkout -b

  8. Make Changes: Implement your desired feature or fix a bug.

  9. Track and stage your changes:

    git status

  10. Add all the required changes:

    git add .

  11. Commit all the changes (Write commit message as "Small Message"):

    git commit -m ""

  12. Push the changes for review:

    git push origin

  13. Open a Pull Request: Create a pull request from your fork to this repository. Provide a concise title and description.

We'll review your contribution and collaborate to merge it into the project. Please adhere to our code of conduct and guidelines.

If you have questions or need assistance, feel free to open an issue.