질문
Git Pull과 Git Fetch의 차이점은 무엇입니까?
답변
가장 간단한 용어에서 Git Pull은 Git Fetch와 Git 병합을 수행합니다.
REFS / REMOTES /
Git Pull은 원격 버전을 최신으로 최신로 가져 오는 동안 다른 원격 트래킹 브랜치를 업데이트하는 것입니다.
Git Pull의 Git 문서에서 :
In its default mode,
git pull
is shorthand forgit fetch
followed bygit merge FETCH_HEAD
.
출처:
https://stackoverflow.com/questions/292357/what-is-the-difference-between-git-pull-and-git-fetch
최근댓글