Skip to content

Bsodoge/Youtube-Dev-Resources

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Youtube-Dev-Resources

Videos on YouTube that will help you on your development journey.

⚒️ Languages:

HTML5 CSS3 JavaScript

🖥️ Live Site:

Live site can be found here.

📹 Add a video that has helped you:

  1. Fork this repository:
  • Go to this repository's page and click the "Fork" button near the top right of your screen.
  1. Create a new branch:

    Terminal Method

    • Clone your fork by using a development-ready environment, which has git installed. (git clone https://github.com/user/fork -b branch path/to/repo)
    • Then, checkout your branch, using git checkout -b <branch name>
    • Add your changes, and commit accordingly, and push to your fork!
    • Then make a pull-request, and wait for the owner of the repo to review and merge your changes.

    Browser Method

    • Go to your fork and click the grey main button in the upper left dropdown menu.
    • Enter the name of your new branch, branch names should have something to do with the change you are making, for example add-video.
    • Click on Create branch <your-branch-name>, this will take you to your new branch.
  2. Adding your video:

    Terminal Method

    • Navigate to videos.json.
    • Copy this format and paste it into videos.json, make sure to not include more than 3 tags.
    {
        "url" : "<Youtube url here>",
        "title" : "<Title of your video here>",
        "tags" : [
            "<tag 1>",
            "<tag 2>",
            "<tag 3>"
        ]
    }
    
    • Add your changes by using git add videos.json.
    • Commit your changes by using git commit -m "<commit msg goes here>".
    • Push your changes by using git push -u origin <your-branch-name>.

    Browser Method

    • Navigate to videos.json.
    • On the top right of the JSON file, click on the pencil icon to edit the file.
    • Paste this code into the videos.json, make sure not to include more than 3 tags.
    {
       "url" : "<Youtube url here>",
       "title" : "<Title of your video here>",
       "tags" : [
           "<tag 1>",
           "<tag 2>",
           "<tag 3>"
       ]
    }
    
    • After editing the videos.json, add a commit message and click on the green button saying "Commit Changes". Make sure you have selected the branch you have created.
  3. Raise a pull request:

    • Go back to your fork and click the Compare and pull request button.
    • Fill out the information and press the Create pull request button.

💪 Contributors:

A huge thank you to everyone who has contributed to this project!

Contributors

Make sure to leave this project a star 🌟.