예시 레포지토리는 이전 게시글과 동일하게 https://github.com/firstcontributions/first-contributions 다음 레포지토리에 참여하였다
이전 게시글 링크 : https://daekyue.tistory.com/14
이전 게시글의 2번까지 동일하게 진행한다
1. 사용하고 있는 IDE의 터미널을 열어 다음을 입력한다
git clone https://github.com/본인의 github 계정명/first-contributions.git
2. 클론 받은 경로로 이동한 후 새로운 branch를 생성하여 그 branch로 이동한다
cd first-contributions
git checkout -b <만들고 싶은 branch 이름>
3. 파일을 수정한 뒤, 수정한 파일을 branch에 추가한다. 그 후, commit을 진행한다
git add Contributors.md
git commit -m "commit 메세지"
4. git에 변경 사항을 push한다
git push origin <github 본인 계정명>
5. 이전 게시글에서와 같이 pull request를 보내는 과정을 진행한다