-
Notifications
You must be signed in to change notification settings - Fork 1
PR 방법
Albert edited this page Sep 23, 2024
·
5 revisions
- fork 후 개인 REPO 다운로드
git clone https://github.com/AlbertImKr/weaverse-backend.git
- Local에서 git remote 추가
git remote add upstream https://github.com/weaverse-techtide/weaverse-backend.git
- remote 확인
- origin은 개인 REPO
- upstream은 조직 REPO
origin https://github.com/AlbertImKr/weaverse-backend.git (fetch)
origin https://github.com/AlbertImKr/weaverse-backend.git (push)
upstream https://github.com/weaverse-techtide/weaverse-backend.git (fetch)
upstream https://github.com/weaverse-techtide/weaverse-backend.git (push)
- 조직 dev 가져온다
git pull upstream dev
- rebase main
git rebase main
- 그리고 push 후 PR 보낸다.
Footer