diff --git a/book/02-git-basics/sections/tagging.asc b/book/02-git-basics/sections/tagging.asc index ae6e081ce..30c323938 100644 --- a/book/02-git-basics/sections/tagging.asc +++ b/book/02-git-basics/sections/tagging.asc @@ -220,7 +220,8 @@ Now, when someone else clones or pulls from your repository, they will get all y [NOTE] .`git push` pushes both types of tags ==== -Pushing tags using `git push --tags` does not distinguish between lightweight and annotated tags; there is no simple option that allows you to select just one type for pushing. +`git push --tags` will push both lightweight and annotated tags. +There is currently no option to push only lightweight tags, but if you use `git push --follow-tags` only annotated tags will be pushed to the remote. ==== ==== Deleting Tags