DEV Community

Cover image for The Secret GitHub Repository ! 🤫
Pratik Kale
Pratik Kale

Posted on • Updated on

The Secret GitHub Repository ! 🤫

Do you know that GitHub allows you to display a README on your GitHub profile through which you can convey information about yourself to other people? You can add information about yourself, your contributions and any other information that visitors may find interesting

How to unlock the secret repository?

  1. Go to your GitHub account and create a new repository and make sure it's identical your GitHub username. Keep the following prerequisites in mind while creating the repository.
    • The repository is public.
    • The repository contains a file named README.md in its root.
    • The README.md file contains any content. Screenshot of creating new GitHub repo
  2. Go to the repository you just created. Open the README.md file and click on the pencil icon to edit. You will be presented with the following boilerplate markdown. GitHub Readme
  3. Uncomment the given markdown and edit as per your requirement. Commit the new changes and go to your GitHub profile you will see that the README.md file will appear on your profile!

Editing and Customizing

The readme file which we just created uses markdown.

What is Markdown?

Markdown is a lightweight and easy-to-use syntax for styling all forms of writing on the GitHub platform. It is a very simple and straight syntax just go through the following guides and you will be all set.

For editing your markdown file you need a text editor with markdown support. I prefer using StackEdit which is web based markdown editor. You can use any editor of your choice.

Things to add in your readme

  1. Bio: Just keep it simple ! Mention your interests and what you do. Mention a fun fact about you.
  2. Your Social Media: Add your social media and contact links. For icons you can use Flaticon or Simple Icons.
  3. Your Skills: You can mention your skills and projects that you are working on. Use shields.io if you want to spice it up a little.
  4. Your GitHub Stats: Show your contribution using the GitHub stats. My GitHub Stats
 ![My GitHub Stats](https://github-readme-stats.vercel.app/api?username=yourusername&theme=midnight-purple&show_icons=true&include_all_commits=true&count_private=true&hide=issues)
Enter fullscreen mode Exit fullscreen mode

Copy this link in your file and replace yourusername with your GitHub username. That's it, it will show your stats.
You can customize the look and feel of the stats. Refer to the following link for more information : GitHub Stats Customization

5.Title Image : You can add a custom title image like this.
Title Image
You can design images like these using Adobe Illustrator or Canva.

6.Visitors Count
This will show how many people visited your GitHub profile.

<img  src="https://profile-counter.glitch.me/username/count.svg" />
Enter fullscreen mode Exit fullscreen mode

Replace username with your GitHub username.

I have just scratched the surface here. There are a lot of things you can do. Explore the repositories I have given below so that you can have inspiration for your own readme.


Templates

My GitHub Profile

GitHub logo pratikkalein / pratikkalein

My Profile Readme

Template Collection

GitHub logo durgeshsamariya / awesome-github-profile-readme-templates

This repository contains best profile readme's for your reference.

GitHub logo abhisheknaiidu / awesome-github-profile-readme

😎 A curated list of awesome GitHub Profile READMEs 📝



And there you have it! Your own GitHub readme. If you know any cool ideas for profile readme do let me know in the comments.

Reach Me:
Twitter | Instagram | Mail

Top comments (0)