Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the difference between git pull and git fetch?

share|improve this question
19  
I found this well written article about git fetch and git pull it's worth the reading: longair.net/blog/2009/04/16/git-fetch-and-merge – Marcos Oliveira Sep 16 '10 at 6:57
You may also find this helpful: stackoverflow.com/a/9204499/631619 – Michael Durrant Apr 14 at 20:56

14 Answers

up vote 1545 down vote accepted

In the simplest terms, git pull does a git fetch followed by a git merge.

You can do a git fetch at any time to update your local copy of a remote branch. This operation never changes any of your own branches and is safe to do without changing your working copy. I have even heard of people running git fetch periodically in a cron job in the background (although I wouldn't recommend doing this).

A git pull is what you would do to bring your repository up to date with a remote repository.

share|improve this answer
83  
"A "git pull" is what you would do to bring your repository up to date" <- isn't the repository update already done by fetch? don't you mean it brings your local branches up-to-date with the remote branches? To the merge: It merges the remote branches with your local copies of those branches, or what exactly does it merge here? – Albert Nov 10 '09 at 12:13
43  
@Albert: Yeah, it's weirdly worded. git pull will always merge into the current branch. So you select which branch you want to pull from, and it pulls it into the current branch. The from branch can be local or remote; it can even be a remote branch that's not a registered git remote (meaning you pass a URL on the git pull command line). – intuited Jun 6 '10 at 10:10
7  
Is a "git push" also a "git fetch" (in the other direction) followed by a "git merge"? – espertus Mar 16 '11 at 23:51
34  
@espertus: No. Pushing never automatically does a merge. The user is expected to pull, resolving any merge conflicts locally, then push back to the remote. – Greg Hewgill Mar 17 '11 at 0:41
8  
If I am at /home/alice/ and do git fetch /home/bob, what parameters should I pass to the subsequent git merge ? – ripper234 May 27 '11 at 19:38
show 10 more comments
  • When you use pull, Git tries to automatically do your work for you. It is context sensitive, so Git will merge any pulled commits into the branch you are currently working in. pull automatically merges the commits without letting you review them first. If you don’t closely manage your branches you may run into frequent conflicts.

  • When you fetch, Git gathers any commits from the target branch that do not exist in your current branch and stores them in your local repository. However, it does not merge them with your current branch. This is particularly useful if you need to keep your repository up to date, but are working on something that might break if you update your files. To integrate the commits into your master branch, you use merge.

share|improve this answer
3  
+1 good explanation and note that you can also could also do a rebase instead of a merge – Justin Ohms Aug 31 '12 at 19:55
1  
Agreed, great comment. Which is why I hate git pull. When would it ever make sense to let a revision tool make code edits for you? And isn't that what merging two files is doing? What if those two edits are physically separated in the file, but LOGICALLY at odds? – Lee Dixon May 13 at 18:44
I'm not sure if I understand this correctly. Let me know if I'm right: Lets say I have two branches, master and test. test is a branch that I'm working on to experiment something. If I do git fetch, it updates master with the target branch. If I do git pull, it tries to update test with the target branch. Is this right? If not, I think I don't understand what 'local repository' means - I assumed it means my local master. – elexhobby Jun 5 at 19:15

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.

git fetch
git diff ... origin
share|improve this answer
3  
Great addition! I was confused by the dots, isn't it: git diff origin – harm Jul 27 '10 at 12:15
3  
@harm - mepster missed the space between '...' and origin: git fetch git diff ... origin/... . Ellipses ('...') conventionally serve as a placeholder for optional parameters, in this case the local branch. In my example above I've also used them to indicate you an optionally specify the remote branch you are diff-ing against. – Compustretch May 8 '11 at 23:08
1  
why not git diff ..origin? – Erik Allik Feb 12 '12 at 23:47
git diff origin and git diff ..origin seem to work but not this weird ... stuff – Marc Jan 8 at 19:32

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:

  • If you do a "git fetch" it will just fetch all the changes in the remote repository (GitHub) and move the origin/master pointer to HEAD. Meanwhile your local branch master will keep pointing to where it has.
  • If you do a "git pull", it will do basically the same thing, but it will try to merge whatever you it pulled into your master branch.
share|improve this answer
2  
+1- the best explanation. I kept reading answers and saying "but WHERE does fetch put everything?" – Nate Glenn Mar 21 at 19:14
1  
origin/master is a local branch that is a COPY of master on origin. When you fetch, you update local:/origin/master. Once you really grok that everything in git is a branch, this makes a lot of sense and is a very powerful way to maintain different changesets, make quick local branches, merge and rebase, and generally get a lot of value out of the cheap branching model. – cam8001 May 28 at 16:00
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.

share|improve this answer
3  
Very interesting, but I can't really see a use case where you want "just the code". Et what happen with your code when you fetch? Is it erased? What happen whith the remote changes? How does it goes into your repo whithout erasing your code if you don't merge? – e-satis Mar 27 '10 at 16:21
4  
@e-satis: The remote branch is also stored locally on your machine. So when you do git fetch it fetches changes from the repository and updates your local remote branch. It does not affect your local branch which tracks the local remote branch, so does not affect your working copy. Now, when you do a merge it will merge the fetched changes with your local branch. – jeffreyveon Oct 31 '11 at 4:23

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.

share|improve this answer

Be careful with git pull --rebase. This warning is from the git-pull man page:

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.

share|improve this answer
+1 This is why if I'm working in a situation where I want to rebase I always do a fetch and then rebase. – Justin Ohms Aug 31 '12 at 19:58
@JustinOhms If git pull --rebase is not the right thing in the given situation, is it right if it is done in two steps? If it is the right thing to do, what is extra the benefit to doing it in two steps? – Kaz May 23 at 21:56
@Kaz - because the rebase is not automatic. Fetching the changes first allows you to make the judgement call. It doesn't fix the problem with rebasing history you've already pushed. It will allow you to see if it is safe to rebase changes you have not already pushed. – Justin Ohms May 24 at 21:11
@JustinOhms How would you decide whether it is safe to rebase changes? I would just try git rebase, and backtrack if it made a mess, in which case I might as well do git pull --rebase. But maybe you have some other way? – Kaz May 25 at 6:14
@KaZ gitk allows you to see the branch structure visually. It will show your the position of your local head, remotes, and your branch structures in relation to what you have fetched. This way you can ensure that you are not rebasing fetched changes that are based on an ancestor that is prior to what you have already pushed to your remote(s). – Justin Ohms May 28 at 19:18

You can fetch from a remote repository, see the differences and then pull or merge.

This is an example for a remote repository called origin and a branch called master tracking the remote branch origin/master:

git checkout master                                                  
git fetch                                        
git diff origin/master
git pull --rebase origin master
share|improve this answer
8  
You probably want to skip the pull and just do a "git rebase origin" as the last step since you already fetched the changes. The reason is that someone could have pushed changes in the time since you did the fetch and these would not have been in fetch that you did the diff review on. – Justin Ohms Aug 31 '12 at 20:02

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

---------------------     -----------------------     -----------------------
- Remote Repo       -     - Remote Repo         -     - Remote Repo         -
-                   -     - gets pushed         -     -                     -
- @ R01             -     - @ R02               -     - @ R02               -
---------------------     -----------------------     -----------------------

---------------------     -----------------------     -----------------------
- Local Repo        -     - Local Repo          -     - Local Repo          -
- pull              -     -                     -     - fetch               -
- @ R01             -     - @ R01               -     - @ R02               -
---------------------     -----------------------     -----------------------

---------------------     -----------------------     -----------------------
- Local Sandbox     -     - Local Sandbox       -     - Local Sandbox       -
- Checkout          -     - new work done       -     -                     -
- @ R01             -     - @ R01+              -     - @R01+               -
---------------------     -----------------------     -----------------------

The three repos with a pull

---------------------     -----------------------     -----------------------
- Remote Repo       -     - Remote Repo         -     - Remote Repo         -
-                   -     - gets pushed         -     -                     -
- @ R01             -     - @ R02               -     - @ R02               -
---------------------     -----------------------     -----------------------

---------------------     -----------------------     -----------------------
- Local Repo        -     - Local Repo          -     - Local Repo          -
- pull              -     -                     -     - pull                -
- @ R01             -     - @ R01               -     - @ R02               -
---------------------     -----------------------     -----------------------

---------------------     -----------------------     -----------------------
- Local Sandbox     -     - Local Sandbox       -     - Local Sandbox       -
- Checkout          -     - new work done       -     - merged with R02     -
- @ R01             -     - @ R01+              -     - @R02+               -
---------------------     -----------------------     -----------------------

This helped me understand why a fetch is pretty important.

share|improve this answer

git fetch will retrieve remote branches so that you can git diff or git merge them with the current branch. git pull will run fetch on the remote brach tracked by the current branch and then merge the result. You can use git fetch to see if there are any updates to the remote branch without necessary merging them with your local branch.

share|improve this answer

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.

share|improve this answer

I found this blog post useful:

http://blog.mikepearce.net/2010/05/18/the-difference-between-git-pull-git-fetch-and-git-clone-and-git-rebase/

It covers git pull, git fetch, git clone and git rebase.

git pull pulls down from a remote and instantly merges.

git fetch is similar to pull but doesn't merge.

git clone clones a repo.

git rebase saves stuff from your current branch that isn't in the upstream branch is saved to a temporary area so your branch is the same as before you started your changes. So, git pull -rebase will pull down the remote changes, rewind your local branch, replay your changes over the top of your current branch one by one until you're up-to-date.

share|improve this answer

We simply say:

git pull = git fetch + git merge

If you run git pull, you do not need to merge the data to local. If you run git fetch, it means you must run git merge for getting the latest code to your local machine. Otherwise, the local machine code would not be changed without merge.

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.

share|improve this answer
I'd rather say git pull == git fetch + git merge :) – melvkim Jun 7 at 10:38

The only difference between git pull and git fetch is that :

git pull pulls from a remote branch and merges it.

git fetch only fetches from the remote branch but it does not merge

i.e. git pull = git fetch + git merge ...

share|improve this answer

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.