fork, pull request

bird.j·2021년 4월 25일
0

github

목록 보기
12/15
  1. repository를 fork해온다.

  2. fork해 온 repository의 주소를 clone하고
    git clone (fork한 repository)

  3. 원래 repository 저장소 추가
    git remote add (이름) (주소)

  4. 저장소 확인
    git remote -v

  5. 리모트 저장소에서 pull받기
    git fetch (이름)
    git merge (이름)/master

  6. fork한 저장소에 작업물 올리기
    git add .
    git commit -m ""
    git push

  7. 리모트 저장소에 작업물 반영하기
    깃헙에서 pull request



https://velog.io/@zansol/Pull-Request-%EC%9D%B4%ED%95%B4%ED%95%98%EA%B8%B0

https://brownbears.tistory.com/466

https://hyunjun19.github.io/2018/03/09/github-fork-syncing/

0개의 댓글