github repository "awesome-devblog"에 자신의 블로그를 추가하는 방법을 포스팅합니다.
참고로 저는 Ubuntu 환경에서 진행하였습니다.
잘못된 부분이 있으면 알려주시면 감사하겠습니다.
1. awesome-devblog repostiroy fork
https://github.com/sarojaba/awesome-devblog에 접속하여 여러분의 github에 fork합니다.
2. git clone
자신이 fork한 awesome-devblog를 clone합니다.
xxx 부분은 여러분의 github id로 변경하세요.
$ git clone https://github.com/xxx/awesome-devblog $ cd awesome-devblog/ |
3. git 설정
자신의 git 정보를 설정하세요.
name 및 email 정보 변경이 필요합니다. (xxx 부분을 수정하세요)
$ git config --global user.name "xxx" $ git config --global user.email xxx@gmail.com $ git config --list |
4. README.md에 블로그 추가
README.md 파일은 이름순서대로 정렬되어 있습니다.
자신의 이름을 추가할 위치를 찾고, 아래 포맷으로 추가해주세요.
이름/블로그 주소/설명
ex) | 황지현 | http://jhhwang4195.tistory.com/ | NFV, 5G, Devops | |
$ vi README.md |
5. git diff 확인
git diff 명령으로 README.md 파일에서 변경된 내용을 비교해보세요.
$ git diff README.md diff --git a/README.md b/README.md index 0795181..4feae5e 100644 --- a/README.md +++ b/README.md @@ -710,6 +710,7 @@ Tag Cloud | 황성재 | https://brunch.co.kr/@uxinventor | 창업 | | | [황준식](people/junkwhinger.md) | http://jsideas.net/ | Data Science | | +| 황지현 | http://jhhwang4195.tistory.com/ | NFV, 5G, Devops | | | 황치규 | https://brunch.co.kr/@delight412 | IT 칼럼 | | |
6. git commit
XXX를 여러분의 이름으로 수정하세요.
commit 메시지이므로 원하시는데로 작성하시면 됩니다.
$ git commit -m "XXX 블로그 추가" |
7. git push
$ git push origin master Username for 'https://github.com': jhhwang4195 Password for 'https://jhhwang4195@github.com': remote: Invalid username or password. fatal: Authentication failed for 'https://github.com/jhhwang4195/awesome-devblog/' root@xos:~/awesome-devblog# git push origin master Username for 'https://github.com': jhhwang4195 Password for 'https://jhhwang4195@github.com': Counting objects: 6, done. Delta compression using up to 4 threads. Compressing objects: 100% (3/3), done. Writing objects: 100% (3/3), 378 bytes | 0 bytes/s, done. Total 3 (delta 2), reused 0 (delta 0) remote: Resolving deltas: 100% (2/2), completed with 2 local objects. To https://github.com/jhhwang4195/awesome-devblog b82f3f8..ce45d27 master -> master |
8. git log 확인
$ git log commit ce45d275af57a7db66ce74f42f868f753e4092f2 Author: jhhwang <jhhwang4195@gmail.com> Date: Sun Dec 17 21:28:56 2017 +0900 황지현 블로그 추가 |
9. Pull Request 요청
Pull Request는 여러분의 git repository에 접속하셔서 요청하시면 됩니다.
https://github.com/xxx/awesome-devblog
10. Pull Request 확인
원본 awesome-devblog repository에 접속해서 Pull Request 내용을 확인합니다.
참고: https://github.com/sarojaba/awesome-devblog
11. 원본 repository에 merge 되었는지 확인
12. 개발자 블로그 추가 확인
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
저는 IT 기술에 대해 관심이 많고, 기술적인 토론하는 것을 매우 좋아합니다^^ github following 해주시면 정말로 감사하겠습니다^^ github: https://github.com/jhhwang4195 어떠한 댓글이든 환영합니다^^ 댓글 좀 달아주세요^^ (구걸 모드) |
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
이 글이 도움이 되셨다면 아래에 있는 "♡공감" 버튼을 클릭해주세요
'오픈 소스 > contribution' 카테고리의 다른 글
[TIP] misspellings 설치 및 사용법 (0) | 2017.12.19 |
---|---|
[TIP] Contribution 관련 용어 정리 (작성중..) (0) | 2017.12.19 |
[TIP] Opensource Contributor가 되려면? (0) | 2017.12.19 |
첫번째 Opensource Contribution 성공 후기 (docker 프로젝트) (0) | 2017.12.19 |
[TIP] Pull Request 정리 (0) | 2017.12.19 |