You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparently, tag names are cut off when 00 is encountered.
I have looked into the reason for this and found the following regular expression to be the cause.
I tried to push the following tag:
v72.94001.10
However, the tag passed to the
tag
event was the following value:Apparently, tag names are cut off when
00
is encountered.I have looked into the reason for this and found the following regular expression to be the cause.
node-git-server/src/service.ts
Line 13 in 2ab22a4
This pattern is defined so that tag names after spaces, null characters, or
00
are not retrieved.Why? Tag names (and branch names) can contain
00
. What is the reason for excluding anything after00
?The text was updated successfully, but these errors were encountered: