여러 가지 방법으로 해당 Repository 에 참여하실 수 있습니다 :)
PR 을 올려주실 때, labels 를 참고하셔서 알맞은 제목을 함께 올려주세요!
Commit Message 는 Update
라고만 해주셔도 되고, 원하시는 메세지를 적어주시면 됩니다.
해당 Repository 에 contribute 하는 방법을 소개드립니다.
이 repository 를 fork 해주세요!
fork 해간 repository 를 local directory 에 clone 해주세요!
# in your workspace
$ git clone https://github.com/JaeYeopHan/Interview_Question_for_Beginner interview
$ cd interview
$ git add .
$ git commit -m "[your description]"
$ git push origin master
Pull Request
를 등록해주세요.
$ prettier --write **/*.md
# or
$ npx prettier --write **/*.md
Pull Request 를 등록했는데, conflict 가 있어서 auto merge 가 안된다고 하는 경우 해당 conflict 를 해결해주세요.
# in Interview_Question_for_Beginner
$ git remote add --track master upstream https://github.com/JaeYeopHan/Interview_Question_for_Beginner
$ git fetch upstream
$ git rebase upstream/master
# (resolve conflict in your editor)
$ git add .
$ git rebase --continue
$ git push -f origin master
Pull Request 방식이 익숙하시지 않은 분들은 issue 로 내용을 등록하실 수도 있습니다. 추가하고 싶은 내용을 issue 로 등록해주시면 저 또는 다른 분들이 적절한 위치에 올려주신 내용을 추가할 수 있습니다 :)
- Edit typos or links
- 오타 또는 잘못된 링크를 수정.
- Inaccurate information
- 잘못된 정보에 대한 Fix.
- New Resources
- 새로운 자료 추가
- Suggestions
- 해당
Repository
에 건의하고 싶은 사항에 대해서Issue
로 등록해주세요.
- 해당
- Questions
- 질문이 있으시면 해당 Label 과 함께
Issue
를 등록해주세요.
- 질문이 있으시면 해당 Label 과 함께
Pull Request example>
DataStructure Link 수정
### This issue is...
* [ ] Edit typos or links
* [ ] Inaccurate information
* [ ] New Resources
* [ ] Suggestions
* [ ] Questions
#### Description
(say something...)
### This Pull Request is...
* [ ] Edit typos or links
* [ ] Inaccurate information
* [ ] New Resources
#### Description
(say something...)