How to Add Videos on README .md File in a GitHub Repository?
Last Updated :
13 May, 2024
Git is known as the free and open-source distributed version control system that is specially made to handle everything from small to very large projects. GitHub is a highly used software that is used for version control. When working in a team where we have more than one developer, this software comes in handy.
Proceeding further Git and GitHub basics are prerequisites to go where here we will be getting how we can add a video in the README.md file of a GitHub repository. This article focuses on how we can add videos in the README.md file in a GitHub repository.
Importance of Git and Github?
To understand why do we need software like Git and GitHub let us consider a scenario where we want to create a simple text file. Now suppose we want to make some changes to it and then save it again. This we can do easily but suppose we are making changes to the file a large number of times and we want to revert back to any of the changes in the sequence. In such scenarios Git is efficient. It controls the version of our file or software. Now suppose there is more than one person in a project and they want to make a few changes so that the other person can easily access it, in such case we use Github. A GitHub is used to host repositories remotely.
Adding Video to the README file
In the following below steps, we have illustrated to add a video in the README.md file.
Step 1: Open the Github website using https://github.com/.

Step 2: Now click on the top right corner to create a new repository.

Step 3: Now click on "Your repositories".

Step 4: Click on the "New" option. This will redirect us to fill in details for our new repository.

A new page will open:

Step 5: Enter the details for your repository and click on the “Create repository” button to create a new repository. For illustration purposes, we are creating a public repository by the name "GeeksforGeeks". We have given description to our repository as "Adding a video to README.md". Also check the checkbox, "Add a README file". It will automatically append the README along with the repository.

Now we have successfully created a new repository by the name "GeeksforGeeks". For now, our README file has the following contents.

Step 6: Click on the pencil icon button to edit the README.md file.

Step 7: Drag and drop the video that you want to add to the README file.

Step 8: Click on the "Commit changes" button.

Final Outcome
We have added the video successfully. Likewise, we can any video to the README.md file.
Similar Reads
How to Add GIFs on README .md File in a GitHub Repository? Git is a free and open-source distributed version control system designed to handle everything from small to very large projects. Github is a highly used software that is used for version control. It is more helpful when more than one person is working on a project. GIF as we all know stands for Gra
2 min read
How to Add Images on README .md File in a GitHub Repository From the Local System? Adding images to your README.md file in a GitHub repository can significantly enhance the project documentation. Whether you're showing screenshots, diagrams, or other visuals, including images can make your README more engaging and informative. This article will guide you through the process of add
3 min read
How to Open a GitHub Repository in VS Code Online? It often feels as if one could view the files or code from a GitHub repository online in a code editor to search the files, code components, or simple text(and indeed, it does enhance the readability and management of the code) without having to clone it to your device. What if I tell you it hardly
2 min read
How to Add Audio Files on README .md File in a GitHub Repository From the Local System? Adding audio files to your README.md file in a GitHub repository can make your project more engaging and informative. This guide will walk you through the steps to embed audio files in your README.md file using your local system. Steps to Add Audio FilesIn order to add an audio file to the README fi
2 min read
How to Embed a Video Into GitHub README.md? GitHub README.md files are written in Markdown, which does not support direct video embedding. However, we can embed videos using the GitHub Repository and create links to YouTube videos with an embedded image that acts as a thumbnail. There are several approaches to embedding video into GitHub READ
2 min read
How to Add Images to README.md on GitHub? Adding images to README.md on GitHub is a good practice to keep the individual user's readme effective & interactive, plus it also helps dictate the project admins better in what issues we are solving by displaying an image. In this article, we will learn how to add images to README.md in GitHub
3 min read