1. Repository 만들기
github 계정이름과 똑같은 이름의 repository를 만든다. 고양이가 반겨주고 있다.
2. README.md 수정하기
Readme.md에 이제 자유롭게 하고 싶은 말을 적으면 된다. 내가 적용한 것은 아래와 같다.
1) Hits, Follow
Hits는 깃허브 방문자수를 알려주는 뱃지이다. 위 링크에서 자신의 repository를 입력하면 html 혹은 markdown을 얻을 수 있다.
Follow는 나를 팔로워 한 사람 수를 알려준다.
![Hits](https://img.shields.io/github/followers/깃허브아이디?label=Follow)
위 마크다운을 적용하면 된다.
2) Intro
나는 처음 readme 파일을 만들면 나오는 가이드를 적극 활용했다. 가이드에서 필요한 부분을 골라서, 아래처럼 채워넣으면 된다.
3) Contact, Tech Stack
배지는 https://shields.io/
아이콘은 https://simpleicons.org/
위 링크에서 배지와 아이콘을 가져오고, html 혹은 markdown을 적용하면 된다.
아이콘에서 검색해서 이름과 색을 가져와서 배지 html를 수정하는 방법이 편하다.
배지와 아이콘은 계속해서 추가될 예정이다.
<h3 align="center">🛠 Tech Stack 🛠</h3>
<p align="center"> Techs that I've used at least once </p>
<p align="center">
<img src="https://img.shields.io/badge/Python-3766AB?style=flat-square&logo=Python&logoColor=white"/></a> 
<img src="https://img.shields.io/badge/Java-007396?style=flat-square&logo=Java&logoColor=white"/></a> 
<img src="https://img.shields.io/badge/C++-00599C?style=flat-square&logo=C%2B%2B&logoColor=white"/></a> 
<img src="https://img.shields.io/badge/C-A8B9CC?style=flat-square&logo=C&logoColor=white"/></a> 
<img src="https://img.shields.io/badge/RobotFramework-000000?style=flat-square&logo=C&logoColor=white"/></a> 
<br>
<img src="https://img.shields.io/badge/HTML5-1572B6?style=flat-square&logo=css3&logoColor=white"/></a> 
<img src="https://img.shields.io/badge/CSS3-1572B6?style=flat-square&logo=css3&logoColor=white"/></a> 
<img src="https://img.shields.io/badge/Javascript-ffb13b?style=flat-square&logo=javascript&logoColor=white"/></a> 
<img src="https://img.shields.io/badge/React-61DAFD?style=flat-square&logo=javascript&logoColor=white"/></a> 
<br>
<img src="https://img.shields.io/badge/Mysql-E6B91E?style=flat-square&logo=MySql&logoColor=white"/></a> 
<img src="https://img.shields.io/badge/aws-333664?style=flat-square&logo=amazon-aws&logoColor=white"/></a> 
</p>
4) 추가해도 좋은 것
- stats ( 계정 평가를 내려준다.)
github.com/anuraghazra/github-readme-stats
- daily coding 시간 repo
fernando.kr/develop/2020-05-02-github-gist-posting/
5) Tip
가장 빠르고 좋은 방법은 다른 개발자의 Readme.md 파일을 참고해서 작성하는 것이다.
그대로 가져와서 나에게 맞게 수정하면 빠르게 완성할 수 있다.
다만, 똑같이 만드는 것보다도 '나만의' repository를 만들기 위해 노력해야한다.
보시는 분들을 위해, 나의 repository 링크를 첨부한다.
'👩💻 Web Programming > GitOps' 카테고리의 다른 글
Git이란? (0) | 2023.07.10 |
---|---|
[GIT] Github에 파일 업로드하기 (0) | 2022.06.26 |
[GIT] Github Repository 완전 복제 (0) | 2021.06.09 |
[GIT] git Add, Commit, Push 취소하기 (0) | 2021.04.02 |