오픈소스 프로젝트에 참여하기 - swkim0128/PARA GitHub Wiki
- Author: velog.io
- Full Title: 오픈소스 프로젝트에 참여하기
- Category: #articles
- Document Tags: opensource
- Summary: Anyone can participate in open-source projects on GitHub by forking the project repository. After forking, you can make changes locally and propose them to the original project by submitting a Pull Request. This process allows you to contribute to the project while the original creators review and merge your contributions.
- URL: https://velog.io/@jihwooon/%EC%98%A4%ED%94%88%EC%86%8C%EC%8A%A4-%EC%BB%A8%ED%8A%B8%EB%A6%AC%EB%B7%B0%EC%85%98-%EC%B0%B8%EC%97%AC%ED%95%98%EA%B8%B0
-
- 변경된 내용을 스테이징 영역(
staging area
)에 추가합니다. git add . # 온점(.)은 전체를 의미합니다 - 스테이징 영역에서 git 저장소에 내용을 저장합니다. git commit
- git 저장소에 변경된 내용을 오픈 소스 프로젝트에 올리기 전 업데이트 된 내용을 확인합니다. git fetch upstream master
- 변경된 내용이 존재하면 작업 내용을 현재 브랜치에 합칩니다. git rebase upstream/master
- 작업 내용을 오픈 소스 프로젝트에 올립니다. git push origin <<브랜치명>> (View Highlight)
- 변경된 내용을 스테이징 영역(