
이 실습에서는 GitHub에서 사용하는 문서 템플릿을 작성하고, 모던 자바스크립트 튜토리얼에 기여하는 방법을 학습합니다. 오픈소스 기여 경험을 통해 협업과 문서화의 중요성을 이해하는 것이 목표입니다.
| 파일명 | 설명 |
|---|---|
README.md | 프로젝트 소개 문서 |
CONTRIBUTING.md | 기여 가이드라인 |
ISSUE_TEMPLATE.md | 이슈 작성 템플릿 |
PULL_REQUEST_TEMPLATE.md | PR 제출 템플릿 |
CONTRIBUTING.md# Contributing Guidelines
Thanks for your interest in contributing! Please follow these steps:
1. Fork the repository
2. Create a new branch (`git checkout -b feature-xyz`)
3. Commit your changes (`git commit -m "Add feature xyz"`)
4. Push to the branch (`git push origin feature-xyz`)
5. Create a Pull Request
git clone https://github.com/사용자명/ko.javascript.info.git
cd ko.javascript.info
수정할 문서 찾기
1-js/02-first-steps/01-hello-world/article.md문서 수정 (VSCode 등 에디터 사용)
수정 사항 커밋 & 푸시
git checkout -b fix-typo-hello-world
git commit -am "Fix typo in hello-world article"
git push origin fix-typo-hello-world
New Pull Request 클릭✅
ko.javascript.info저장소에 오탈자 수정 PR 제출 완료
✅CONTRIBUTING.md,PULL_REQUEST_TEMPLATE.md파일을 포함한 문서 템플릿 구성 완료