Learn more about the difference between git fetch and git pull
Both git fetch and git pull can update the remote repository to the local one. So what are the differences between them? There are several concepts that have to be mentioned to clarify this issue.
FETCH_HEAD: It is a version link, recorded in a local file, pointing to the end version of the branch that has been taken down from the remote warehouse.
commit-id: After each local work is completed, a git commit operation will be performed to save the current work to the local repo. At this time, a commit-id will be generated, which can uniquely identify a version. serial number. After using git push, this serial number will also be synchronized to the remote warehouse.
With the above concepts, let’s talk about git fetch
git fetch: This will update the latest commit-id of the branches contained in all remote repositories in git remote and record it in the .git/FETCH_HEAD file
The way git fetch updates the remote warehouse is as follows:
git fetch origin master:tmp <span class="hljs-comment"> //在本地新建一个temp分支,并将远程origin仓库的master分支代码下载到本地temp分支</span> git diff tmp <span class="hljs-comment"> //来比较本地代码与刚刚从远程下载下来的代码的区别</span> git <span class="hljs-built_in">merge</span> tmp<span class="hljs-comment"> //合并temp分支到本地的master分支</span> git branch -d temp<span class="hljs-comment"> //如果不想保留temp分支 可以用这步删除</span>
(1) If you use git fetch directly, the steps are as follows:
- Create and update local remote branches. That is, create and update the origin/xxx branch, and pull the code to the origin/xxx branch.
- Set the current branch-origin/current branch correspondence in FETCH_HEAD. If you directly git merge at that time, origin/abc can be merged into the abc branch.
(2)git fetch origin
Just manually specify the remote to fetch. When no branch is specified, it usually defaults to master
(3)git fetch origin dev
Specify remote and FETCH_HEAD, and only pull the commits of this branch.
git pull: First, based on the local FETCH_HEAD record, compare the local FETCH_HEAD record with the version number of the remote warehouse, then git fetch obtains the subsequent version data of the remote branch currently pointed to, and then Use git merge to merge it with the current local branch. So it can be considered that git pull is a combination of the two steps of git fetch and git merge.
The usage of git pull is as follows:
git pull <span class="hljs-tag"><<span class="hljs-title">远程主机名</span>></span> <span class="hljs-tag"><<span class="hljs-title">远程分支名</span>></span>:<span class="hljs-tag"><<span class="hljs-title">本地分支名</span>></span> //取回远程主机某个分支的更新,再与本地的指定分支合并。
Therefore, compared with git pull, git fetch is equivalent to getting the latest version from the remote to the local, but it will not automatically merge. If you need to selectively merge git fetch is a better choice. When the effect is the same, git pull will be faster.
The above is the detailed content of Learn more about the difference between git fetch and git pull. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Regarding the problem of removing the Python interpreter that comes with Linux systems, many Linux distributions will preinstall the Python interpreter when installed, and it does not use the package manager...

Configure the apscheduler timing task as a service on macOS platform, if you want to configure the apscheduler timing task as a service, similar to ngin...

Using python in Linux terminal...

Getting started with Python: Hourglass Graphic Drawing and Input Verification This article will solve the variable definition problem encountered by a Python novice in the hourglass Graphic Drawing Program. Code...

Which libraries in Go are developed by large companies or well-known open source projects? When programming in Go, developers often encounter some common needs, ...

Using ADB...

"DebianStrings" is not a standard term, and its specific meaning is still unclear. This article cannot directly comment on its browser compatibility. However, if "DebianStrings" refers to a web application running on a Debian system, its browser compatibility depends on the technical architecture of the application itself. Most modern web applications are committed to cross-browser compatibility. This relies on following web standards and using well-compatible front-end technologies (such as HTML, CSS, JavaScript) and back-end technologies (such as PHP, Python, Node.js, etc.). To ensure that the application is compatible with multiple browsers, developers often need to conduct cross-browser testing and use responsiveness

DebianLinux is known for its stability and security and is widely used in server, development and desktop environments. While there is currently a lack of official instructions on direct compatibility with Debian and Hadoop, this article will guide you on how to deploy Hadoop on your Debian system. Debian system requirements: Before starting Hadoop configuration, please make sure that your Debian system meets the minimum operating requirements of Hadoop, which includes installing the necessary Java Runtime Environment (JRE) and Hadoop packages. Hadoop deployment steps: Download and unzip Hadoop: Download the Hadoop version you need from the official ApacheHadoop website and solve it
