전략
-
Git: pull strategy(전략, 종류)git 2021. 5. 23. 10:14
git pull이란? 다른 레포지토리 또는 로컬 브랜치를 가져와서 통합하는 것이다. 쉽게 말하면 git pull은 git fetch 후 git merge하는 것이다. git pull = git fetch + git merge 실제로 git pull에 대한 도움말을 보면 git pull --help DESCRIPTION Incorporates changes from a remote repository into the current branch. In its default mode, git pull is shorthand for git fetch followed by git merge FETCH_HEAD. 원격 저장소의 변화들을 현재 브랜치로 통합한다. git pull은 git fetch와 git merge..