top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

GIT: What is the main difference between git fetch and git pull command ?

+1 vote
441 views
GIT: What is the main difference between git fetch and git pull command ?
posted May 12, 2016 by Neelam

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

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 remote-tracking branches under refs/remotes//. This operation never changes any of your own local branches under refs/heads, 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 a local branch up-to-date with its remote version, while also updating your other remote-tracking branches.

answer May 13, 2016 by Manikandan J
...