Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.76 KB

CONTRIBUTING.md

File metadata and controls

46 lines (33 loc) · 1.76 KB

CONTRIBUTING

아래와 같은 과정을 통해 해당 Git Repo 활동에 참여하실 수 있습니다.

How to contribute

image-1-fork

  • Fork가 된 repository를 여러분의 local에 clone으로 받습니다.

    # In your local...
    $ git clone https://github.com/YourAccount/2021-spring-web
    $ cd 2021-spring-web
  • .md 파일을 작성합니다. 아래와 같은 규칙을 지켜야 합니다.

  • 파일 이름 형식

    • Git닉네임_이름(카테고리).md
    • ex) edit8080_leetaehee(React).md
  • markdownlint

    • nodejs 런타임npm 또는 Yarn이 설치되어 있어야 합니다.
    • npm install -g markdownlint-cli 또는 yarn global add markdownlint-climarkdownlint-cli 모듈을 설치합니다.
    • 터미널에서 markdownlint [검사할 마크다운 파일 이름]을 실행하여 검사할 수 있습니다.

image-2-terminal

  • stage, commit, push 합니다.
# In your local...
$ git add .
$ git commit -m "Add [your file] to April-Week-3"
$ git push
  • Pull Request를 생성합니다.

image-3-pr1 image-3-pr2