-
Merge workflow(git-push, git-fetch, git-pull)코딩Coding/GitHub_GitLab관련 2023. 6. 4. 13:06728x90
Merge workflow
The merge workflow works by copying branches between upstream and downstream. Upstream can merge contributions into the official history; downstream base their work on the official history.
There are three main tools that can be used for this:
- git-push[1] copies your branches to a remote repository, usually to one that can be read by all involved parties;
- git-fetch[1] that copies remote branches to your repository; and
- git-pull[1] that does fetch and merge in one go.
Note the last point. Do not use git pull unless you actually want to merge the remote branch.
워크플로 병합
병합 워크플로는 업스트림과 다운스트림 간에 분기를 복사하여 작동합니다. Upstream은 기여를 공식 기록에 병합할 수 있습니다. 하류는 공식 역사에 대한 작업을 기반으로 합니다.
이를 위해 사용할 수 있는 세 가지 주요 도구가 있습니다.
- git-push[1]는 일반적으로 관련된 모든 당사자가 읽을 수 있는 원격 저장소에 브랜치를 복사합니다.
- 원격 분기를 저장소에 복사하는 git-fetch[1] ; 그리고
- 가져오기와 병합을 한 번에 수행하는 git-pull[1] .
https://git-scm.com/docs/gitworkflows
반응형'코딩Coding > GitHub_GitLab관련' 카테고리의 다른 글
opensource 가이드 기여하는 가이드 (0) 2023.07.13 git commit -am "활용법“ (0) 2023.07.11 6.2 GitHub - GitHub 프로젝트에 기여하기 (0) 2023.07.10 Snippets in VSCode 스니펫 (0) 2023.06.22 Git_Tutorial_Documentation_git pull commit내가 원하는 과거 버젼으로 받기_단서1 (3) 2023.06.04 github을 웹 기반 vscode 실행(code에서 . 점하나 누르면 실행 죽인다. ㅋㅋ) (0) 2023.05.21 GitLab❤️git remote add origin & git branch & git push 활용법 (0) 2023.05.19 gitlab 2fa git pull 하는 방법(이중 인증하니 git clone 이 안된다 ㅠㅠ 그래서 git init 하고 git remote add origin git@이거 활용해야한다. (0) 2023.05.18