-
Notifications
You must be signed in to change notification settings - Fork 2
Participation Guide
SBJang edited this page Jun 30, 2019
·
3 revisions
저희 프로젝트는 git-flow와 github-pull-request를 사용하여 누구에게나 프로젝트 참여의 가능성을 열어두고 있습니다
$ git clone https://github.com/[내 깃헙 아이디]/react-idevs-materialui-admin-one.git
$ cd react-idevs-materialui-admin-one
$ git remote add upstream https://github.com/incheonjs/react-idevs-materialui-admin-one.git
$ git checkout develop
$ git pull origin develop
$ git branch feature/new-component-myid
$ git checkout feature/new-component-myid
[또는]
$ git checkout -b feature/new-component-myid
$ git add .
$ git commit -m "[커밋 메세지]"
$ git push origin feature/new-component-myid
내 깃허브 저장소로 들어와서 업로드 된것을 확인하면 upstream 저장소(incheonjs/react-idevs-materialui-admin-one)의 develop 저장소에 반영될 수 잇도록 pull request 날립니다.
$ git pull upstream develop
$ git push --all origin