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