I'm curious if there are any limits on the length of a git tag name. If not within the official git documentation, then what about some of the more popular platforms such as github, bitbucket, gitlab, etc.?
The docs I've seen do not list a length limitation on the tag name. But there has to be some kind of a limit since nothing is unlimited, eventually something will fail when you reach a "limit". Here are two primary docs that relate to tagging and specifically the tag name.
https://git-scm.com/docs/git-tag https://git-scm.com/docs/git-check-ref-format
The primary reason why I'm asking this question is that a SVN repo I've been using for the last 8+ years is trying to be moved to git (a bitbucket repo), and the feedback I'm getting is that "long" tag names are causing a mess of troubles and is preventing the migration. The longest tag name I can locate in the repo is less than 60 characters in length with less than 100 tags.
Are there any limitations in tag name length?