Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A nice and simple question - is the function of "git fetch" a strict sub-set of git fetch --tags?

I.e. if I run git fetch --tags, is there ever a reason to immediately run git fetch straight afterward?

What about git pull and git pull --tags? Same situation?

share|improve this question

4 Answers

Most of this has been said in the other answers and comments, but here's a concise explanation:

  • git fetch fetches all branch heads (or all specified by the remote.fetch config option), all commits necessary for them, and all tags which are reachable from these branches. In most cases, all tags are reachable in this way.
  • git fetch --tags fetches all tags, all commits necessary for them. It will not update branch heads, even if they are reachable from the tags which were fetched.

Summary: If you really want to be totally up to date, using only fetch, you must do both.

It's also not "twice as slow" unless you mean in terms of typing on the command-line, in which case aliases solve your problem. There is essentially no overhead in making the two requests, since they are asking for different information.

share|improve this answer
Thanks for your comment. I'm running git in Cygwin over a high-latency network - it's twice as slow when there's nothing to fetch for either (about 5 seconds). – meowsqueak Jul 30 '09 at 21:57
Oh, wow. Does git-remote work any better? Looking at the source briefly I think it may make only a single call - but I'm not totally sure if it'll grab the not-on-branch tags. Honestly I don't know if I've ever seen any tags not on a branch. With the things I pull from, the only way that'd happen if I waited so long that I missed a maintenance release, a feature release, and discontinuation of maintenance of the old release. – Jefromi Jul 30 '09 at 22:13
I think the issue is that 'git fetch' only fetches tags on tracked branches. We have a script that allows users to select a working branch, so by default there are many branches that are not currently tracked by an individual. – meowsqueak Jul 30 '09 at 22:46
I haven't tried git-remote yet, but it's on my ever-growing to-do list :) – meowsqueak Jul 30 '09 at 22:47
3  
Note that git remote update is not actually a substitute for git fetch and git fetch --tags. git remote update will not update existing tags that have changed, although it will bring in new tags. Only git fetch --tags will update already existing tags. – larsks Jul 27 '12 at 20:55
show 6 more comments
up vote 18 down vote accepted

I'm going to answer this myself.

I've determined that there is a difference. "git fetch --tags" might bring in all the tags, but it doesn't bring in any new commits!

Turns out one has to do this to be totally "up to date", i.e. replicated a "git pull" without the merge:

$ git fetch --tags
$ git fetch

This is a shame, because it's twice as slow. If only "git fetch" had an option to do what it normally does and bring in all the tags.

share|improve this answer
Interesting, I did not experienced that (probably because my repo was up to date at the time of my test.) +1 – VonC Jul 30 '09 at 6:05
1  
How about a 'git remote update myRemoteRepo': would that fetch remote content and tags? – VonC Jul 30 '09 at 6:15
git fetch --tags will bring in all commits needed to support tags on the remote repository, but it doesn't fetch commits on branches that aren't included in the set of tags on the remote repository. – Charles Bailey Jul 30 '09 at 6:35
1  
I do git fetch all the time and it consistently pulls down any new commits and any new tags. What version of Git are you running? – Tim Visher Jul 30 '09 at 12:14
3  
FTR, 'git remote update myRemoteRepo' does not work well - does not seem to do what 'git fetch && git fetch --tags' does, especially as a subsequent merge has no effect. – meowsqueak Aug 3 '09 at 22:10
show 2 more comments

In most situations, git fetch should do what you want, which is 'get anything new from the remote repository and put it in your local copy without merging to your local branches'. git fetch --tags does exactly that, except that it doesn't get anything except new tags.

In that sense, git fetch --tags is in no way a superset of git fetch. It is in fact exactly the opposite.

git pull, of course, is nothing but a wrapper for a git fetch <thisrefspec>; git merge. It's recommended that you get used to doing manual git fetching and git mergeing before you make the jump to git pull simply because it helps you understand what git pull is doing in the first place.

That being said, the relationship is exactly the same as with git fetch. git pull is the superset of git pull --tags.

share|improve this answer
1  
"git pull is the superset of git pull --tags" - but... 'git fetch' is not the superset of 'git fetch --tags' so the relationship isn't exactly the same...? – meowsqueak Jul 30 '09 at 21:58
4  
Just found this question... well, it seems to me that git pull does not get all tags but only those reachable from the current branch heads. However, git pull --tags fetches all tags and is apparently equivalent to git fetch --tags. – Archimedix Oct 22 '10 at 15:11

The general problem here is that git fetch will fetch refs/heads/*:refs/remotes/$remote/*. If any of these commits have tags, those tags will also be fetched. However if there are tags not reachable by any branch on the remote, they will not be fetched.

The --tags option switches the refspec to +refs/tags/*:refs/tags/*. You could ask git fetch to grab both. I'm pretty sure to just do a git fetch && git fetch -t you'd use the following command:

git fetch origin refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*

And if you wanted to make this the default for this repo, you can add a second refspec to the default fetch:

git config --local --add remote.origin.fetch +refs/tags/*:refs/tags/*

This will add a second fetch = line in the .git/config for this remote.


I spent a while looking for the way to handle this for a project. This is what I came up with.

git fetch -fup origin +refs/*:refs/*

In my case I wanted these features

  • Grab all heads and tags from the remote so use refspec refs/*:refs/*
  • Overwrite local branches and tags with non-fast-forward + before the refspec
  • Overwrite currently checked out branch if needed -u
  • Delete branches and tags not present in remote -p
  • And force to be sure -f
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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