less than 1 minute read

When you have a local clone of a remote repository and want to update it: pulling will not get all the new tags...

run the following

[code language="bash" collapse="false" padlinenumbers=false]
$ git pull
$ git fetch --tags --verbose
[/code]


source: link