Add a README file to your GitHub repo ๐Ÿ“–

Add a README file to your GitHub repo ๐Ÿ“–

How to add a README file to your repository on GitHub | Beginner friendly

ยท

2 min read

A README file is important for any project, seems like a minor detail but it's a great way to introduce your project to the world and insure that it is being used properly.

There's three ways to add a README file to your GitHub repo:

  1. If you already have a repo, you can add a README file by clicking on the "Add a README" button on the main page of your repo.

  1. You can also add a README file when you create a new repo.

  1. Lastly, adding it as a file on your local computer then pushing it to your repo on GitHub.

This tutorial will cover the third option.

1. Adding a README file to your project locally

  • Open your project folder

  • Click on the new file button

  • Name the new file README.md

๐Ÿ’ก If you want to add a README file to someone else's project and don't know where to start; read Clone, edit and push to GitHub then come back to this article after you've cloned the repo.

2. Adding content to your README file

Here are some basic things you can include in your README file:

  • Image or gif of your project

  • Description of your project

  • Cloning the repo: add your repo url from github git clone https://github.com/sulamitaivanov/hoverEffect
    ๐Ÿ’ก Install dependencies guide: if your project has files other than HTML, CSS, JS. Not every project needs this.

3. Pushing your README file to GitHub

Open your terminal ๐Ÿ’ก Use the search on your computer to find it.

Access the location and folder where your project is located. In this example, my project is located on my Desktop and a folder called new-project.

cd Desktop/new-project
๐Ÿ’กIf it is a folder within a folder, add another forward slash and the next folder name. Repeat until you get to the root folder of your project.

git init

git status Git status is always optional but good practice. Check the status of your files, it will show you which files have been modified, added or deleted.

git add README.md

git status

git commit -m "added README file"

git remote add origin https://github.com/sulamitaivanov/hovereffect.git

git push -u origin main

You can now refresh the page and see your README file on GitHub! ๐ŸŽ‰

Resources

ย