I cloned the mosquitto repo that has tag v1.4.9. However the tagged commit does not appear to be on a branch.
How could that happen? Does the author actually keep a
I did something similar by mistake: I was about to push a new release, I committed everything on my PC and added a tag.
Then I did git push --tags, thinking erroneously that it would push the master branch and the tag. Then I created a release on github. The release was pointing to the last changes, but the master branch was behind. I had to push again, and that aligned everything.
The notable thing is that all the files were actually pushed with the first command (I saw it from the output, you know: creating deltas, etc). In the second push the transferred bytes reported 0, so I guess only branch metadata were pushed.