I'm working on a shared project that uses git as version control.
I'd like to avoid other developers creating tags in the project that contain special characters like newline since it break the complication command syntax when the tag is added there.
In fact, i want to enforce tag name formatting to contain only alpha-numeric characters, and the char '_'. How can I force this repo not to accept any tags that are not compliant with this standard.
Is there such option in Gitlab ?