Awesome
<div align="center">How to Create a GitHub Profile
Written by Amar Panjwani <br> Technical Writer
<!-- Delete below for publication --> <div align="center" id="socialbuttons">If you find this tutorial helpful, please consider giving it a :star:
</div> </div> <br> 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. <br><br> 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.Create a Profile Repository
To make a GitHub profile, you must first create a repository with the same name as your GitHub username.
1. Create a new repository
In the upper-right hand corner of the GitHub dashboard: <br>
- a. Click
+
- b. Click
New repository
<br>
2. Add the details for the new repository
- a. Under "Repository name", type in your GitHub username <br>
For example, if my GitHub username is linuxfan123, I would type in
linuxfan123
- 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 <br>
3. View your new default profile
- 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 <br>
4. Edit your new profile
- a. Delete lines 3-6 and the ending
-->
<br>
- 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 <br>
- d. When satisfied, click the green
Commit changes
button to finalize the changes
5. View your new profile
In the upper-right hand corner of the GitHub dashboard: <br>
- a. Click your profile picture
- b. Click
Your Profile
Advanced Coding Statistic Add-ons
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.<br>
<!-- Convert note to Hugo-type for publication -->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 <>
.
Activity
Displays total stars, commits, pull requests, etc. <br>
<br>[![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)
Top Languages
Lists your most frequently coded in languages by percentage <br>
<br>
[![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)
Repository Highlight
Displays a single repository (just as it would look underneath your GitHub profile)
<br>
<a href="https://github.com/amarpan/simon-memory-game"><img align="center" src="https://github-readme-stats.vercel.app/api/pin/?username=amarpan&repo=simon-memory-game&theme=vue-dark" /></a>
<br>
<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>
Streak Counter
Lists your current and longest streak of making at least one daily GitHub commit
<br>
<br>
[![GitHub Streak Counter](https://github-readme-streak-stats.herokuapp.com/?user=<your-github-username>&theme=vue-dark)](https://git.io/streak-stats)
Visitor Counter
A running counter of how many times your GitHub profile has been visited <br>
<!-- ![Visitor Counter](https://visitor-badge.glitch.me/badge?page_id=amarpan.amarpan) -->
<br>
![Visitor Counter](https://visitor-badge.laobi.icu/badge?page_id=<your-github-username>.<your-github-username>)
***If you found this tutorial helpful, please consider giving it a :star:
Copyright :copyright: 2021-2022