What's the difference between git pull and git fetch?
|
|
In the simplest terms, You can do a A |
|||||||||||||||||||||
|
|
|||||||||||
|
|
One use case of "git fetch" is that the following will tell you any changes in the remote branch since your last pull... so you can check before doing an actual pull, which could change files in your working copy.
|
|||||||||||||||
|
|
It cost me a little bit to understand what was the difference is, but for me this is a simple explanation. Just think that "master" in your localhost is a branch. When you clone a repository you fetch the entire repository to you local host. This means that at that time you have an origin/master pointer to HEAD and master pointing to the same HEAD. when you start working and do commits you advance the master pointer to HEAD + your commits. But the origin/master pointer is still pointing to what it was when you cloned. So the difference will be:
|
|||||||||
|
git-pull - Fetch from and merge with another repository or a local branch SYNOPSIS git pull … DESCRIPTION Runs git-fetch with the given parameters, and calls git-merge to merge the retrieved head(s) into the current branch. With --rebase, calls git-rebase instead of git-merge. Note that you can use . (current directory) as the <repository> to pull from the local repository — this is useful when merging local branches into the current branch. Also note that options meant for git-pull itself and underlying git-merge must be given before the options meant for git-fetch. You would pull if you want the histories merged, you'd fetch if you just 'want the codez' as some person has been tagging some articles around here. |
|||||||||
|
|
It is a bit silly to add anything here since this is an old question, but I'll add it anyway for the benefit of other people who may come upon this. It is important to contrast the design philosophy of git with the philosophy of a more traditional source control tool like svn. Subversion was designed and built with a client/server model. There is a single repository that is the server, and several clients can fetch code from the server, work on it, then commit it back to the server. The assumption is that the client can always contact the server when it needs to perform an operation. Git was designed to support a more distributed model with no need for a central repository (though you can certainly use one if you like.) Also git was designed so that the client and the "server" don't need to be online at the same time. Git was designed so that people on an unreliable link could exchange code via email, even. It is possible to work completely disconnected and burn a CD to exchange code via git. In order to support this model git maintains a local repository with your code and also an additional local repository that mirrors the state of the remote repository. By keeping a copy of the remote repository locally, git can figure out the changes needed even when the remote repository is not reachable. Later when you need to send the changes to someone else, git can transfer them as a set of changes from a point in time known to the remote repository. The command "git fetch" is the command that says "bring my local copy of the remote repository up to date." The command "git pull" says "bring the changes in the remote repository where I keep my own code." Normally "git pull" does this by doing a "git fetch" to bring the local copy of the remote repository up to date, and then merging the changes into your own code repository and possibly your working copy. The take away is to keep in mind that there are often at least three copies of a project on your workstation. One copy is your own repository with your own commit history. The second copy is your working copy where you are editing and building. The third copy is your local "cached" copy of a remote repository. |
|||
|
|
|
Be careful with This is a potentially dangerous mode of operation. It rewrites history, which does not bode well when you published that history already. Do not use this option unless you have read git-rebase(1) carefully. |
|||||||||||
|
|
You can fetch from a remote repository, see the differences and then pull or merge. This is an example for a remote repository called
|
|||||
|
|
I have struggled with this as well. In fact I got here with a google search of exactly the same question. Reading all these answers finally painted a picture in my head and I decided to try to get this down looking at the state of the 2 repositories and 1 sandbox and actions preformed over time while watching the version of them. So here is what I came up with. Please correct me if I messed up anywhere. The three repos with a fetch
The three repos with a pull
This helped me understand why a fetch is pretty important. |
|||
|
|
|
|
||||
|
|
|
The documentation of www.git-scm.com has been improved a lot. I encourage you to read the article 3.5 Git Branching - Remote Branches. It explains a lot of things we should know to work better with Git. |
||||
|
|
|
I found this blog post useful: It covers
|
|||
|
|
|
We simply say:
If you run So in the Git Gui, when you do fetch, you have to merge the data. Fetch itself won't make the code changes at your local. You can check that when you update the code by fetching once fetch and see; the code it won't change. Then you merge... You will see the changed code. |
||||
|
|
|
The only difference between
i.e. git pull = git fetch + git merge ... |
||||
|
|
protected by Brad Larson♦ Mar 10 at 1:30
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
