728x90
반응형
https://openinfradays.kr/session/10
위 영상을 보면서 간략하게 메모한 내용입니다.
Github contribute Workflow
Upstream Repository -> Origin Repository -> Local Repository -> Working copy
1. Fork : Upstream Repository 에서 Fork 받으면 Origin Repository 로 이동
2. Clone : Origin Repository 에서 Local Repository 로 이동
3. git remote add upstream (upstream repository 를 알수 있도록 설정)
4. git fetch upstream
5. git checkout 현재_최신_브랜치
6. feature 브랜치 생성해서 작업 진행후 commit
8. git fetch upstream (내가 작업하는 도중에 변경되는것을 확인하기 위해)
9. git rebase upstream/현재_최신_브랜치
7. local -> origin 으로 push (본인 저장소)
8. Pull Request 생성
728x90
반응형
'Development > Git' 카테고리의 다른 글
git cherry pick (0) | 2024.01.05 |
---|---|
다른 브랜치에서 pull 하면 어떻게 될까??? (0) | 2020.12.07 |
github page 에 테마 설치 (0) | 2020.10.20 |
github 에 page 만들기 (0) | 2020.10.15 |
Git local, remote branch 삭제 (0) | 2020.09.08 |