개발일지/GIT

[깃허브] 깃허브 프로필, 닉네임 저장소 (special repository)

양쏘쏘 2024. 5. 22. 12:57
728x90
반응형

깃허브 프로필

개발자라면 다들 깃허브 계정은 있을테지만 소개 페이지가 없는 분들도 있죠.

간단하게 깃허브에 처음 방문했을 때의 화면을 꾸미는 방법을 알아봅시다.

 

Special repository

깃허브에서 자신의 닉네임과 똑같은 이름의 repository를 만들면 special repository이며 README.md를 추가하면 깃허브 프로필을 추가할 수 있다고 알려줍니다. 이때 꼭 public 레포로 만드셔야합니다.

 

1. 기술 스택

내용 중 기술 스택 설명을 위한 shields.io로 아이콘만 변경해서 쓰면 되는 데 이 방법도 간단합니다.

 

1) 글자 반반

shield예시_1

  <img src="https://img.shields.io/badge/any_text-you_like-blue"/>

 

2) 글자만

shield예시_2

<img src=" https://img.shields.io/badge/just%20the%20message-8A2BE2"/>

 

3) 글자랑 로고

shield예시_3

<img src="https://img.shields.io/badge/Spring-6DB33F.svg?style=for-the-badge&logo=spring&logoColor=white"/>

 

아이콘은 하단의 링크를 참고하세요.

 

Simple Icons

3146 Free SVG icons for popular brands

simpleicons.org

 

2. solved.ac

solved.ac 보여주기

![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=깃허브_닉네임&layout=compact)
[![Solved.ac Profile](http://mazassumnida.wtf/api/v2/generate_badge?boj=백준_닉네임)](https://solved.ac/백준_닉네임/)

 

3. 깃허브 언어 사용

언어

![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=깃허브_닉네임&layout=compact)

깃허브에서 언어 사용하는 비율을 볼 수 있습니다.

4. hit 표시

방문자수

  [![HitCount](https://hits.dwyl.com/깃허브_닉네임/깃허브_닉네임.svg?style=flat-square&show=unique)](http://hits.dwyl.com/깃허브_닉네임/깃허브_닉네임)

깃허브 방문자수를 보여줍니다


5. 예시

아래처럼 README를 만들면 위해서 설명한 정보는 거의 들어가있습니다. 

<h3 align="center">👋 이름 👋</h3>
<div align="center">

<a href="">
  <img src="https://img.shields.io/badge/Spring-6DB33F.svg?style=for-the-badge&logo=spring&logoColor=white" />&nbsp
</a>
<h6>🎓 학교 정보</h6>
<h6>🔎 최신 정보</h6>
</div>

<br>

<h3 align="center">✨ Tech Stack ✨</h3>
<div align="center">
  <img src="https://img.shields.io/badge/java-1daabb.svg?style=for-the-badge&logo=java&logoColor=white" />&nbsp
</div>
<br>

<br>

<h3 align="center">📫 Contact 📫</h3>
<div align="center">
  <a href="mailto:이메일 주소">
    <img
      src="https://img.shields.io/badge/이메일_주소-D14836?style=for-the-badge&logo=gmail&logoColor=white"/>&nbsp
  </a>
</div>

<br>

<div align="center">

![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=깃허브_닉네임&layout=compact)
[![Solved.ac Profile](http://mazassumnida.wtf/api/v2/generate_badge?boj=백준_닉네임)](https://solved.ac/백준_닉네임/)
</div>
<div align="right">

  [![HitCount](https://hits.dwyl.com/깃허브_닉네임/깃허브_닉네임.svg?style=flat-square&show=unique)](http://hits.dwyl.com/깃허브_닉네임/깃허브_닉네임)

</div>

 

728x90