Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Github Pull Request 방법 #1

Open
woo1 opened this issue Jun 25, 2021 · 0 comments
Open

Github Pull Request 방법 #1

woo1 opened this issue Jun 25, 2021 · 0 comments
Assignees
Labels
documentation Improvements or additions to documentation

Comments

@woo1
Copy link
Owner

woo1 commented Jun 25, 2021

  1. 기여하려는 저장소를 내 저장소로 fork 한다.
  2. fork한 내 저장소를 git clone해서 로컬에 다운로드한다.
  3. 원격 저장소 Remote 설정 (원래의 저장소 git 주소를 가져와 내가 PR 보낼 곳을 추가한다.)
    git remote add upstream https://github.com/[original_owner]/[original_repo.git]
  4. PR용 브랜치 생성 : 코드를 수정하고 PR을 보낼 목적으로 사용할 브랜치를 만든다. (ex. test)
    git checkout -b test
  5. 코드 수정 후 커밋 : 위 명령을 통해 브랜치를 만들고 바로 그 브랜치로 변경됩니다.
    수정할 부분을 수정한 뒤 commit 처리합니다.
    git add 수정한_파일
    git commit -m "프로젝트에 정해진 규칙이 있다면 참고해서 작성"
  6. PR용 브랜치에 push
    git push origin test
  7. fork한 내 github repository에 들어가서 [Compare & pull request] 버튼 눌러서 내용 작성

참고 : https://chanhuiseok.github.io/posts/git-3/

@woo1 woo1 added the documentation Improvements or additions to documentation label Jun 25, 2021
@woo1 woo1 self-assigned this Jun 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

1 participant