포크로 GitHub에서 협업하려면
우리가 그룹 프로젝트에서 작업한 방식:
GitHub 포크의 워크플로를 기록했습니다.
1단계. 저장소 포크
2단계. 포크된 리포지토리 복제
cd folderName
git clone https://github.com/Your-GitHub-Username/github-practice
3단계. 내 기능 분기 만들기
git checkout -b myOwnBranchName
3.1 단계 내 부분에서 작업하고 내 원격 저장소로 푸시
git add .
git commit -m “......”
git push origin myOwnBranchName(feature)
4.1단계 개발 브랜치가 변경되었는지 확인
(작업을 재개할 때마다 수행)
git fetch upstream
git checkout main
git merge upstream/develop
4.2단계. 내 자신의 원격 저장소로 푸시
git push origin main
5단계 동기화된 메인을 현재 작업 중인 로컬 기능 브랜치에 병합합니다.
git switch(or checkout) yourOwnBranchName(feature)
git merge main
if merge conflict happens, go step6.
6단계. 갈등 관리
6.1단계. 풀 요청 보내기
7단계. 병합 후 내 원격 저장소로 푸시
git push origin myOwnBranchName(feature)
Reference
이 문제에 관하여(포크로 GitHub에서 협업하려면), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/phyuhala/to-collaborate-on-github-by-fork-33h1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)