데브코스

[18주차 - DAY4] 오픈소스 기여(3)

미안하다 강림이 좀 늦었다 2024. 6. 27. 13:02

 

 

first-contributions 프로젝트 기여 해보기

기능이나 라이브러리 프로젝트가 아니라 오픈소스 기여를 해보는 beginner를 위한 연습 프로젝트이다.

아래 링크에 접속하여 설명되어 있는 대로 따라 하면 된다.

https://github.com/firstcontributions/first-contributions/blob/main/translations/README.ko.md

 

first-contributions/translations/README.ko.md at main · firstcontributions/first-contributions

🚀✨ Help beginners to contribute to open source projects - firstcontributions/first-contributions

github.com

 

1. 저장소를 포크한다.

 

2. clone 한다.

git clone https://github.com/ncherryu/first-contributions.git

 

3. branch를 생성한다.

git checkout -b add-ncherryu

 

4. Contributors.md 파일을 열어서 내 이름을 추가한다. 맨 처음과 맨 끝을 제외하고 아무 데나 적으면 된다. 적었으면 저장한다.

 

5. add 한다.

git add Contributors.md

 

6. 커밋한다.

git commit -m "Add ncherryu to Contributors list"

 

7. 3에서 생성한 브랜치 이름으로 push 한다.

git push origin add-ncherryu

 

8. 깃허브의 레포지토리에서 PR을 진행한다.