Written by Amar Panjwani
Technical Writer
Creating a GitHub profile is a great way to show visitors what you're all about as a developer - what languages and frameworks you know, types of work you are interested in, and general background information.
In this guide, we'll cover how to create a repository that doubles as a profile and how to add advanced tools that display cool statistics about your coding history and habits.
To make a GitHub profile, you must first create a repository with the same name as your GitHub username.
In the upper-right hand corner of the GitHub dashboard:
- a. Click
+
- b. Click
New repository
- a. Under "Repository name", type in your GitHub username
For example, if my GitHub username is linuxfan123, I would type inlinuxfan123
- b. Click the
Public
option so all users can see your newly created profile - c. Check the
Add a README file
box - d. Click the green
Create repository
button to make the new repository with all the above settings
- a. Click the white
View Profile
button on the right side of the page - b. Take a look at your new profile - by default, some placeholder text is inputted.
- c. Click the pencil icon in the top-right hand corner of your new profile to initiate editing
- a. Delete lines 3-6 and the ending
-->
- b. Add the missing information - think about what important information visitors looking at your code should know
- c. Click the
Preview
tab to see what the new edits will look like
- d. When satisfied, click the green
Commit changes
button to finalize the changes
In the upper-right hand corner of the GitHub dashboard:
- a. Click your profile picture
- b. Click
Your Profile
You can also choose to add from a variety of add-on tools that display insightful and interesting statistics about your coding history and habits.
Note: Make sure to replace <your-github-username>
with your own GitHub username when using the following code snippets and then delete the angle brackets <>
.
Displays total stars, commits, pull requests, etc.
[![Activity](https://github-readme-stats.vercel.app/api?username=<your-github-username>&count_private=true&show_icons=true&include_all_commits=true&theme=vue-dark&custom_title=Activity)](https://github.com/anuraghazra/github-readme-stats)
Lists your most frequently coded in languages by percentage
[![Top Languages](https://github-readme-stats.vercel.app/api/top-langs/?username=<your-github-username>&theme=vue-dark&custom_title=Languages&layout=compact)](https://github.com/anuraghazra/github-readme-stats)
Displays a single repository (just as it would look underneath your GitHub profile)
<a href="https://github.com/<your-github-username>/<repository-name>"><img align="center" style="margin:20px" src="https://github-readme-stats.vercel.app/api/pin/?username=<your-github-username>&repo=<repo-name>&theme=vue-dark" /></a>
Lists your current and longest streak of making at least one daily GitHub commit
[![GitHub Streak Counter](https://github-readme-streak-stats.herokuapp.com/?user=<your-github-username>&theme=vue-dark)](https://git.io/streak-stats)
A running counter of how many times your GitHub profile has been visited
![Visitor Counter](https://visitor-badge.laobi.icu/badge?page_id=<your-github-username>.<your-github-username>)
Copyright ©️ 2021-2022